ui-chart
ui-chart copied to clipboard
This directive lets you use jqPlot with Angular
I copied the example of the readme, but the chart doesn't appear. I set a breakpoint at the top of the link function and discovered that the link function never...
If you want to toggle series visibility(ng-model="options.series[0].show") $watch function is not triggering replot, you need third parameter to be set to true. a.$watch(c.chartOptions,function(){d()},true)
update in line 23: jQuery-selector works better with the latest versions
Empty children before plotting, make sure plot created some children or retry, redraw on resize (needed for responsive web design layouts).
``` I am new to angularjs and want to use ui-chart and i copy past the code from but it don,t show any graph.Please help me. ``` =================index.html======================= ``` ```...
Is it neccessary to state jquery 2 in dependencies. Neither jqplot, nor your directive requires jQuery 2.IMHO jQuery > 1.9 should be sufficient.
`` `ui-chart` is both tagname and attribute, which looks confusing. How about ``
Dear ui-chart team, on fixed windows sizes (tablets, ...) it doesn't make a lot of sense, but for a normal desktop environment an automatic recreation of the plot canvas would...
I try to use ui-chart in angular-ui-bootstrap accordion directives but it's not work. ``` accordion(close-others="oneAtATime") accordion-group(ng-repeat="group in groups") accordion-heading | {{ group.name }} i.pull-right.glyphicon(ng-class="{'glyphicon-chevron-down': isopen, 'glyphicon-chevron-right': !isopen}") div div(ui-chart='group.volumeQuota', chart-options='chartOpts')...