You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 25, 2019. It is now read-only.
I've been wrestling with this all day, so here's my comment in case someone would fall into similar situation.
It seems that using ui-chart both as a tagname and attribute is not only confusing, but also it doesn't work at all (at least w/ AngularJS 1.2.11, jqPlot 1.0.8 and jQuery 2.1.0).
Changing attrs.uiChart to attrs.chartData in directive's definition and using it as @fuqcool suggested does the trick (@gburnett's answer works w/o such modifications, though).
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
<ui-chart="data" chart-options="chartOptions"></ui-chart>
ui-chart
is both tagname and attribute, which looks confusing.How about
<ui-chart chart-data="data" chart-options="chartOptions"></ui-chart>
The text was updated successfully, but these errors were encountered: