Hi Gopi,
Use the below Json as same format for your requirement
{
"chart": {
"type": "column"
},
"title": {
"text": "Column + Scatter Line Chart"
},
"xAxis": {
"categories": [1, 2, 3, 4]
},
"yAxis": {
"title": {
"text": "Values"
}
},
"series": [
{
"name": "Column Data",
"type": "column",
"data": [10, 15, 13, 17],
"color": "#007bff"
},
{
"name": "Scatter Line",
"type": "spline",
"data": [11, 14, 12, 16],
"color": "#dc3545",
"marker": {
"enabled": true,
"radius": 5,
"fillColor": "#dc3545"
}
}
]}