Series definition for cartesian charts (Bar, Line, Area).Documentation Index
Fetch the complete documentation index at: https://prefab.prefect.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
JSON Schema for the ChartSeries component.
Series definition for cartesian charts (Bar, Line, Area).Documentation Index
Fetch the complete documentation index at: https://prefab.prefect.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
{
"type": "object",
"properties": {
"dataKey": {
"description": "Data field to plot",
"type": "string"
},
"label": {
"type": [
"string",
"null"
],
"default": null,
"description": "Display label (defaults to dataKey)"
},
"color": {
"type": [
"string",
"null"
],
"default": null,
"description": "CSS color override"
}
},
"required": [
"dataKey"
]
}