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

Default value: []

Sets the data for the chart to display.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  array
    returnsValue = $(".selector").wijbubblechart("option", "seriesList");
    
    // Set value
    var newValue; // Type:  array
    $(".selector").wijbubblechart("option", "seriesList", newValue);
        
});
var seriesList : array;
Example
$("#bubblechart").wijbubblechart({
seriesList: [{
label: "Q1",
legendEntry: true,
data: {
x: [1, 2, 3, 4, 5],
y: [12, 21, 9, 29, 30],
y1:[3, 5, 1, 6, 2]
}
}, {
label: "Q2",
legendEntry: true,
data: {
xy: [1, 21, 2, 10, 3, 19, 4, 31, 5, 20],
y1:[3, 5, 1, 6, 2]
}
}]
OR
seriesList: [{
label: "Q1",
legendEntry: true,
data: {
x: ["A", "B", "C", "D", "E"],
y: [12, 21, 9, 29, 30],
y1:[3, 5, 1, 6, 2]
}
}]
OR
seriesList: [{
label: "Q1",
legendEntry: true,
data: {
x: [new Date(1978, 0, 1), new Date(1980, 0, 1),
new Date(1981, 0, 1), new Date(1982, 0, 1),
new Date(1983, 0, 1)],
y: [12, 21, 9, 29, 30],
y1:[3, 5, 1, 6, 2]
}
}]
});
See Also

Reference

options type
wijbubblechart jQuery Widget