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:
bubblechart.seriesList = [{
label: "Toyota",
legendEntry: true,
data: {
x: [2006, 2007, 2008, 2009, 2010],
y: [5, 6, 8, 7, 8.5], y1: [4, 4.4, 5.1, 5.5, 5.7]
}
}, {
label: "General Motors",
legendEntry: true,
data: {
x: [2006, 2007, 2008, 2009, 2010],
y: [3, 4, 6, 7.5, 8], y1: [2, 2.5, 3, 4, 5]
}
}, {
label: "Volkswagon",
legendEntry: true,
data: {
x: [2006, 2007, 2008, 2009, 2010],
y: [4, 5, 6.5, 7.3, 6.6], y1: [2, 2.5, 4.5, 6, 5.5]
}
}, {
label: "Hyundai",
legendEntry: true,
data: {
x: [2006, 2007, 2008, 2009, 2010],
y: [6, 1, 5, 2, 4], y1: [2, 3, 4.5, 1.5, 1]
}
}, {
label: "Ford",
legendEntry: true,
data: {
x: [2006, 2007, 2008, 2009, 2010],
y: [6, 2, 3, 4.6, 5], y1: [4.5, 4, 3.8, 3, 2]
}
}]