MarioGS
MarioGS

Reputation: 51

How to create Doughnut Chart using Infragistics and AngularJS

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

Answers (1)

dkamburov
dkamburov

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

Related Questions