Reputation: 51
I'am create a web site using AngularJS Framework, I want create a Doughnut Chart usign Infragistics, I found igniteui-angular but no look any directive for Doughnut chart.
Upvotes: 1
Views: 137
Reputation: 394
All of the Ignite UI widgets are initialized in similar ways. Here you can find more information on how to create them - https://github.com/IgniteUI/igniteui-angular#initializing-controls.
Here's how to create igDoughnutChart using the controller options:
<div id="chart1" data-ig-doughnut-chart="opts">
Here's the fiddle.
Upvotes: 2