ng2-charts slack
Beautiful charts for Angular2 based on Chart.js
Library updated for Angular 7
Sample using ng2-charts@2.2.4
https://valor-software.com/ng2-charts/
- You can install ng2-charts using npm
npm install ng2-charts@2.2.4 --save
- You 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
- Line Chart - https://stackblitz.com/edit/ng2-charts-line-template
- Pie Chart - https://stackblitz.com/edit/ng2-charts-pie-template
- Bar Chart - https://stackblitz.com/edit/ng2-charts-bar-template
- Doughnut Chart - https://stackblitz.com/edit/ng2-charts-doughnut-template
- Radar Chart - https://stackblitz.com/edit/ng2-charts-radar-template
- Polar Area Chart - https://stackblitz.com/edit/ng2-charts-polar-area-template
- Bubble Chart - https://stackblitz.com/edit/ng2-charts-bubble-template
- Scatter Chart - https://stackblitz.com/edit/ng2-charts-scatter-template
import { ChartsModule } from 'ng2-charts';
// In your App's module:
imports: [
ChartsModule
]
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
.
Note: For more information about possible options please refer to original chart.js documentation
data
(SingleOrMultiDataSet
) - set of points of the chart, it should beMultiDataSet
only forline
,bar
,radar
anddoughnut
, otherwiseSingleDataSet
datasets
({ data: SingleDataSet, label: string }[]
) -data
see about, thelabel
for the dataset which appears in the legend and tooltipslabels
(Label[]
) - x axis labels. It's necessary for charts:line
,bar
andradar
. And just labels (on hover) for charts:polarArea
,pie
anddoughnut
.Label
is either a singlestring
, or it may be astring[]
representing a multi-line label where each array element is on a new line.chartType
(ChartType
) - indicates the type of charts, it can be:line
,bar
,radar
,pie
,polarArea
,doughnut
options
(ChartOptions
) - chart options (as from Chart.js documentation)colors
(Color[]
) - data colors, will use default and|or random colors if not specified (see below)legend
: (boolean = false
) - if true show legend below the chart, otherwise not be 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
There are several sets of default colors. Colors can be replaced using the colors
attribute. If there is more data than colors, colors are generated randomly.
The ChartsModule
provides a service called ThemeService
which 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) { }
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.
There are schematics that may be used to generate chart components using Angular CLI. The components are defined in package ng2-charts-schematics
.
npm install --save-dev ng2-charts-schematics
ng generate ng2-charts-schematics:line my-line-chart
This calls angular's component schematics and then modifies the result, so all the options for the component schematic are also usable here. This schematics will also add the ChartsModule
as an imported module in the main app module (or another module as specified in the --module
command switch).
Please follow this guidelines when reporting bugs and feature requests:
- Use GitHub Issues board to report bugs and feature requests (not our email address)
- Please always 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)