Documentation Index
Fetch the complete documentation index at: https://prismeai-legacy.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Required. Chart type: ‘column’, ‘line’, or ‘pie’.
Required. Data for the chart (array of arrays).
Show Optional. Chart configuration
Show Optional. X-axis configuration.
Data type for x-axis values.
Show Optional. Y-axis configuration.
Data type for y-axis values.
Optional. Additional properties for the chart.
- slug: Charts
type: line
data:
- ["Month", "Sales", "Expenses"]
- ["Jan", 1000, 400]
- ["Feb", 1500, 460]
- ["Mar", 1300, 420]
- ["Apr", 1700, 500]
config:
x:
type: category
label: Month
y:
type: value
label: Amount ($)
customProps:
height: 400
seriesField: category
smooth: true
onInit: myInitBlockCharts
updateOn: myUpdateBlockCharts