Here is a listing of the types of charts you can display in the Composite Chart, along with the settings you supply for each one. Set the type for each series in the seriesList array.
Chart Type |
Settings |
pie |
- radius: number in pixels
- center: {x: number, y: number} from top left in pixels
- data: [{label: string, data: number}]
|
bar |
- stacked: Boolean See stacked for more information.
- axis: object See axis for more information.
- clusterOverlap: number See clusterOverlap for more information.
- clusterWidth: number See clusterWidth for more information.
- clusterSpacing: number See clusterSpacing for more information.
- clusterRadius: number See clusterRadius for more information.
- label: string
- data: {[x: string, y: number]}
|
column |
line |
- axis: object See axis for more information.
- type: string (line or area) See Linechart type for more information.
- hole: object See Linechart hole for more information.
- label: string
- data: {[x: string, y: number]}
- markers: {visible: Boolean, type: "string"} (box, circle, cross, diamond, invertedTri, tri)
|
spline |
bezier |
area |
scatter |
- axis: object See axis for more information.
- zoomOnHover: Boolean See Scatterchart zoomOnHover for more information.
- label: string
- data: {[x: string, y: number]}
- markerType: "string" (box, circle, cross, diamond, invertedTri, tri)
|
bubble |
|
See Also