An array collection that contains the data to be charted.
Type: Array
Default: []
data
A value that specifies the data for the chart series.
x
A value that provides the data for the x axis.
y
A value that provides the data for the y axis.
dataSource
label
A value that indicates the chart series label.
legendEntry
A value that determines whether or not the chart legend will contain an entry for the chart series data.
markers
Code Example:
var linechart = document.getElementById("wijlinechartDefault").winControl;
seriesList: [{
label: "s1",
legendEntry: true,
data: { x: [1, 2, 3, 4, 5], y: [-5, -3, 1, 7, 2] }
}, {
label: "s2",
legendEntry: true,
data: { x: [1, 2, 3, 4, 5], y: [-2, -6, 2, 4, 3] }
}, {
label: "s3",
legendEntry: true,
data: { x: [1, 2, 3, 4, 5], y: [-3, -5, 3, 2, 5] }
}]