ng2-charts slack
Beautiful charts for Angular based on Chart.js
Samples using ng2-charts
https://valor-software.com/ng2-charts/
You can install ng2-charts by using the Angular CLI:
ng add ng2-charts
The required packages will be automatically installed, and your app.config.ts
will be updated with the required
changes to start using the library right away.
-
You can install ng2-charts using npm:
npm install ng2-charts --save
or yarn:
yarn add ng2-charts --save
-
You will also need to install and include
Chart.js
library in your application (it is a peer dependency of this library, more info can be found in the officialchart.js
documentation)npm install chart.js --save
or with yarn:
yarn add chart.js --save
-
Import the directive in your standalone component:
import { BaseChartDirective } from 'ng2-charts'; @Component({ standalone: true, imports: [BaseChartDirective], }) export class MyComponent {}
-
Provide a configuration, typically in your
main.ts
:import { provideCharts, withDefaultRegisterables } from 'ng2-charts'; bootstrapApplication(AppComponent, { providers: [provideCharts(withDefaultRegisterables())], }).catch((err) => console.error(err));
Alternatively, include a minimal configuration to reduce the bundle size, eg:
provideCharts({ registerables: [BarController, Legend, Colors] });
Or in your AppModule:
import { provideCharts, withDefaultRegisterables } from 'ng2-charts'; @NgModule({ providers: [provideCharts(withDefaultRegisterables())], bootstrap: [AppComponent], }) export class AppModule {}
ng2-chart version | ||||||
Angular version | v1.x | v2.x | v3.x | v4.x | v5.x | v6.x |
2 - 9 | ✓ | |||||
10 | ✓ | |||||
11 | ✓ | |||||
12 | ✓ | |||||
13 | ✓ | |||||
14 | ✓ | ✓ | ||||
15 | ✓ | ✓ | ||||
16 | ✓ | |||||
17 | ✓ | ✓ |
There is one directive for all chart types: baseChart
, and there are 8 types of charts: line
, bar
, radar
, pie
, polarArea
, doughnut
, bubble
and scatter
. You can use the directive on a canvas
element as follows:
<canvas baseChart [data]="barChartData" [options]="barChartOptions" [type]="'bar'"> </canvas>
Note: For more information about possible options please refer to original chart.js documentation
type
: (ChartType
) - indicates the type of chart, it can be:line
,bar
,radar
,pie
,polarArea
,doughnut
or any custom type added to Chart.jsdata
: (ChartData<TType, TData, TLabel>
) - the whole data structure to be rendered in the chart. Support different flexible formats and parsing options, see here. In alternative, and depending on thetype
of your chart, you can use thelabels
anddatasets
properties to specify individual options.labels
: (TLabel[]
) - Datasets labels. It's necessary for charts:line
,bar
andradar
. And just labels (on hover) for charts:polarArea
,pie
anddoughnut
. Labels are matched in order with thedatasets
array.datasets
: (ChartDataset<TType, TData>[]
) - Same as thedatasets
property of thedata
input. See here for details.options
: (ChartOptions<TType>
) - chart options (as per chart.js documentation).legend
: (boolean = false
) - if true, chart legend is shown.
chartClick
: fires when click on a chart has occurred, returns information regarding active points and labelschartHover
: fires when mousemove (hover) on a chart has occurred, returns information regarding active points and labels
By default, this library uses the colors as defined by Chart.js. If you need more control on colors, eg: generating colors on the fly, see the advanced color palettes.
The ThemeService
allows clients to set a structure specifying colors
override settings. This service may be called when the dynamic theme changes, with colors which fit the theme. The
structure is interpreted as an override, with special functionality when dealing with arrays. Example:
type Theme = 'light-theme' | 'dark-theme';
private _selectedTheme: Theme = 'light-theme';
public get selectedTheme(){
return this._selectedTheme;
}
public set selectedTheme(value){
this._selectedTheme = value;
let overrides: ChartOptions;
if (this.selectedTheme === 'dark-theme') {
overrides = {
legend: {
labels: { fontColor: 'white' }
},
scales: {
xAxes: [ {
ticks: { fontColor: 'white' },
gridLines: { color: 'rgba(255,255,255,0.1)' }
} ],
yAxes: [ {
ticks: { fontColor: 'white' },
gridLines: { color: 'rgba(255,255,255,0.1)' }
} ]
}
};
} else {
overrides = {};
}
this.themeService.setColorschemesOptions(overrides);
}
constructor(private themeService: ThemeService<AppChartMetaConfig>){
}
setCurrentTheme(theme: Theme){
this.selectedTheme = theme;
}
The overrides
object has the same type as the chart options object ChartOptions
, and wherever a simple field is
encountered it replaces the matching field in the options
object. When an array is encountered (as in the xAxes
and yAxes
fields above), the single object inside the array is used as a template to override all array elements in
the matching field in the options
object. So in the case above, every axis will have its ticks and gridline colors
changed.
Please follow this guidelines when reporting bugs and feature requests:
- Use GitHub Issues to report bugs and feature requests.
- Please always provide an example project and write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.
Thanks for understanding!
The MIT License (see the LICENSE file for the full text)
If you like this library and want to say thanks, consider buying me a coffee!