I am using an Apex line and column chart and want to create it as a reusable template. However, when I embed it into another view, I receive a component error. How should I resolve this issue? I have bound two parameters: options and series
Your screengrab is missing the context for the component error and what props you are showing.
Tip: Your screengrab is > 80% nothingness. Resize the window to show Project Browser, enough of the view and Properties Explorer at a reasonable size so we don't have to zoom in to read it.
{
"chartData": {
"xValues": [
"2024-08-01",
"2024-08-02",
"2024-08-03",
"2024-08-04",
"2024-08-05"
],
"yValues": [
65,
59,
80,
81,
56
]
},
"config": {
"xAxis": {
"title": "Date",
"unitOfMeasure": "days",
"min": "2024-08-01",
"max": "2024-08-05"
},
"yAxis": {
"title": "Value",
"unitOfMeasure": "units",
"min": 0,
"max": 100
},
"header": "Sample Line Chart"
}
} i wants to show that in this json formate
is it possible to do