DataSeries

A data series to be shown in a chart.

JSON

{
"title": string,
"categoryData": [ string | number ],
"valueData": [ number | null ],
}

Fields

title
Title of the data series. Required.
categoryData
X-axis labels for the data series. Required on the first data series, optional on subsequent ones.
valueData
Y-axis values for the data series. If the categoryData array is present, it must have the same numberof elements as valueData. Required.