Skip to content

Commit a5e6564

Browse files
committed
chore: release
1 parent 165896f commit a5e6564

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NgxSimpleCharts
22

3-
This is a small chart library for Angular based on D3js. It currently supports single line and multi line charts with a legend. Bar and Donut charts are now supported too. The token service and token interceptor are now included in a configurable manner. The Bar charts, line charts, donut charts and the services are in separate entry points to enable the Angular Compiler to put only the required code in the modules that use the features. Its purpose is to enable fast updates to new Angular versions. To enable the fast updates and due to limited time the library will continue have a small feature set.
3+
This is a small chart library for Angular based on D3js. It currently supports single line and multi line charts with a legend. Bar and Donut charts are now supported too. The token service and token interceptor are now included in a configurable manner. The Bar charts, line charts, donut, and Date/Timeline charts and the services are in separate entry points to enable the Angular Compiler to put only the required code in the modules that use the features. Its purpose is to enable fast updates to new Angular versions. To enable the fast updates and due to limited time the library will continue have a small feature set.
44

55
## Minimum Supported Angular Version
66
Angular 16
@@ -49,6 +49,13 @@ The chartState is a string with the values of 'ready' or 'not-ready'. The animat
4949

5050
To enable styling the optional 'color' property of the ChartSlice can be used to provide a custom color. It needs to be in Css color format.
5151

52+
## Date/TimeLine Charts
53+
This is a scolling chart to display time periods in bars vertically in units of years or months.
54+
To use the Date/Timeline chart componnent this module has to be imported: [NgxDateTimeChartsModule](https://github.com/Angular2Guy/ngx-simple-charts/blob/master/projects/ngx-simple-charts/date-time/src/lib/ngx-date-time-charts.module.ts)
55+
56+
Then the component can be used: [<sc-date-time-chart [showDays]="..." [items]="..."></sc-date-time-chart>](https://github.com/Angular2Guy/ngx-simple-charts/blob/master/projects/ngx-simple-charts/date-time/src/lib/sc-date-time-chart/sc-date-time-chart.component.ts)
57+
The property 'showDays' switches the on the view with months and days and the 'items' property contains the [ChartItems](https://github.com/Angular2Guy/ngx-simple-charts/blob/master/projects/ngx-simple-charts/date-time/src/lib/sc-date-time-chart/model/chart-item.ts) to display.
58+
5259
## Token Services
5360
The services/interceptors for the Jwt token handling are now included.
5461

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-simple-charts",
3-
"version": "16.1.0-beta2",
3+
"version": "16.1.0",
44
"license": "Apache License Version 2.0",
55
"scripts": {
66
"ng": "ng",

projects/ngx-simple-charts/README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NgxSimpleCharts
22

3-
This is a small chart library for Angular based on D3js. It currently supports single line and multi line charts with a legend. Bar and Donut charts are now supported too. The token service and token interceptor are now included in a configurable manner. The Bar charts, line charts, donut charts and the services are in separate entry points to enable the Angular Compiler to put only the required code in the modules that use the features. Its purpose is to enable fast updates to new Angular versions. To enable the fast updates and due to limited time the library will continue have a small feature set.
3+
This is a small chart library for Angular based on D3js. It currently supports single line and multi line charts with a legend. Bar and Donut charts are now supported too. The token service and token interceptor are now included in a configurable manner. The Bar charts, line charts, donut, and Date/Timeline charts and the services are in separate entry points to enable the Angular Compiler to put only the required code in the modules that use the features. Its purpose is to enable fast updates to new Angular versions. To enable the fast updates and due to limited time the library will continue have a small feature set.
44

55
## Minimum Supported Angular Version
66
Angular 16
@@ -49,6 +49,13 @@ The chartState is a string with the values of 'ready' or 'not-ready'. The animat
4949

5050
To enable styling the optional 'color' property of the ChartSlice can be used to provide a custom color. It needs to be in Css color format.
5151

52+
## Date/TimeLine Charts
53+
This is a scolling chart to display time periods in bars vertically in units of years or months.
54+
To use the Date/Timeline chart componnent this module has to be imported: [NgxDateTimeChartsModule](https://github.com/Angular2Guy/ngx-simple-charts/blob/master/projects/ngx-simple-charts/date-time/src/lib/ngx-date-time-charts.module.ts)
55+
56+
Then the component can be used: [<sc-date-time-chart [showDays]="..." [items]="..."></sc-date-time-chart>](https://github.com/Angular2Guy/ngx-simple-charts/blob/master/projects/ngx-simple-charts/date-time/src/lib/sc-date-time-chart/sc-date-time-chart.component.ts)
57+
The property 'showDays' switches the on the view with months and days and the 'items' property contains the [ChartItems](https://github.com/Angular2Guy/ngx-simple-charts/blob/master/projects/ngx-simple-charts/date-time/src/lib/sc-date-time-chart/model/chart-item.ts) to display.
58+
5259
## Token Services
5360
The services/interceptors for the Jwt token handling are now included.
5461

projects/ngx-simple-charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ngx-simple-charts",
3-
"version": "16.1.0-beta2",
3+
"version": "16.1.0",
44
"license": "Apache License Version 2.0",
55
"peerDependencies": {
66
"@angular/common": "^16.0.0",

0 commit comments

Comments
 (0)