Wijmo UI for the Web
seriesList Option
wijmo.chart.wijpiechart Namespace > options type : seriesList Option

Default value: []

An array collection that contains the data to be charted.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  array
    returnsValue = $(".selector").wijpiechart("option", "seriesList");
    
    // Set value
    var newValue; // Type:  array
    $(".selector").wijpiechart("option", "seriesList", newValue);
        
});
var seriesList : array;
Remarks
The following is the sample data for seriesList option, [{ label: "Q1", legendEntry: true, data: 12, offset: 0 }, { label: "Q2", legendEntry: true, data: 21, offset: 0 }, { label: "Q3", legendEntry: true, data: 9, offset: 0 }, { label: "Q4", legendEntry: true, data: 29, offset: 10 }]
See Also

Reference

options type
wijpiechart Method