Simple charts for ember apps
ember install ember-simple-charts
Data Provider
import Ember from 'ember';
const { Controller } = Ember;
export default Controller.extend({
donutData: [
{
label: 'Super Cool',
data: 100,
description: 'Lorem Ipsum'
},
{
label: 'Very Cool',
data: 200,
description: 'Long text description here.'
},
],
});
Template:
{{simple-chart height=250 width=250 name='donut' data=donutData}}
More examples can be found in this addons dummy application.
See the Contributing guide for details.
This project is licensed under the MIT License.