This Ember CLI addon is a simple wrapper for ChartJS (v2.7.0).
$ ember install ember-cli-chart
In your handlebars template just do:
{{ember-chart type=CHARTTYPE data=CHARTDATA options=CHARTOPTIONS width=CHARTWIDTH height=CHARTHEIGHT}}
- CHARTTYPE: String; one of the following --
line
,bar
,radar
,polarArea
,pie
ordoughnut
. - CHARTDATA: Array; refer to the ChartJS documentation
- CHARTOPTIONS: Object; refer to the ChartJS documentation. This is optional.
- CHARTWIDTH: Number; pixel width of the canvas element. Only applies if the chart is NOT responsive.
- CHARTHEIGHT: Number; pixel height of the canvas element. Only applies if the chart is NOT responsive.
{{ember-chart type='pie' data=model.chartData width=200 height=200}}