Initializes a new instance of the PieSeries class.
Namespace: MindFusion.Charting
File: PieSeries.js
JavaScript Copy Code |
---|
function PieSeries (values, innerLabels, outerLabels) |
Type: List
A list of data values.
Type: List
A list of inner labels.
Type: List
A list of outer labels.
The following code creates a new PieSeries and sets it as the series to be rendered by an instance of the PieChart control:
JavaScript Copy Code |
---|
pieChart.series = new Charting.PieSeries( new Collections.List([20, 60, 40, 55]), new Collections.List(["January", "February", "March", "April"]), new Collections.List(["January", "February", "March", "April"])); pieChart.series.title = "Pie Series"; |