l***@gmail.com
2016-08-26 07:49:05 UTC
I am trying to get charts in my ember-cli project using google charts.I
included the addon with the below command.
ember install ember-google-charts
app/templates/application.hbs
{{pie-chart data=data }}
app/routes/application.js
import Ember from 'ember';
export default Ember.Route.extend({
model() {
return [
['Task', 'Hours per Day'],
['Work', 11],
['Eat', 2],
['Commute', 2],
['Watch TV', 2],
['Sleep', 7],
];
},
});
but in the browser no chart is displayed is that i have to include any
other files???
please help me.......
included the addon with the below command.
ember install ember-google-charts
app/templates/application.hbs
{{pie-chart data=data }}
app/routes/application.js
import Ember from 'ember';
export default Ember.Route.extend({
model() {
return [
['Task', 'Hours per Day'],
['Work', 11],
['Eat', 2],
['Commute', 2],
['Watch TV', 2],
['Sleep', 7],
];
},
});
but in the browser no chart is displayed is that i have to include any
other files???
please help me.......
--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+***@googlegroups.com.
To post to this group, send email to google-visualization-***@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/6b94f373-063b-43d3-9c94-fcca71b0e259%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+***@googlegroups.com.
To post to this group, send email to google-visualization-***@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/6b94f373-063b-43d3-9c94-fcca71b0e259%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.