-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gauge Chart does not appear #82
Comments
the problem seems to be, that i dont get the new version including the gauge feature using bower install. |
Sending me messages telling me to look at this immediately is not the way to go bud. People who donate their time to write and release open source software don't always have time to reply immediately You need to understand that. Now, I just tested the bower install, from which i can verify I am getting the correct version with the gauge chart. I havent actually used the gauge chart, so I don't know what all amCharts is expecting. Try clearing your bower cache |
now ive got the right version, too. thanks. |
create a fiddle and I'll do my best to troubleshoot it |
Here's the fiddle: http://jsfiddle.net/w3vpc35o/441/ |
You just need to add data= [] to the amChartOptions so that it will render it because while the directive is getting rendered it checks whether data property is set or not... If not it does not render the chart it and nothing comes up. I hope that cleared the issue $q.when($scope.options).then(function(options) {
// we can't render a chart without any data
if (options.data) {
var renderChart = function(amChartOptions) {
var o = amChartOptions || options; |
i'am trying to build an gauge chart, but it does'nt appear...
In my Ctrl:
in my html:
The text was updated successfully, but these errors were encountered: