Chart Data
Inline tabular data driving a chart. The first column usually supplies category/x-axis labels; subsequent columns are plotted measures unless a chart type or renderer maps them differently.
Metadata
Field index
columns
typearray<string>requiredyesdefault—
Ordered column labels for the chart data table.
{
"columns": [
"Quarter",
"Revenue"
]
}rows
typearray<array<ref:ChartDataCell>>requiredyesdefault—
Tabular chart rows. Each row aligns by index with columns.
{
"rows": [
[
"Q1",
12
],
[
"Q2",
18
],
[
"Q3",
24
],
[
"Q4",
31
]
]
}