Hi Dwaine,
Thanks for contacting Syncfusion support.
We have analyzed your query. To stack the column series you can use stackingColumn series type. With respect to the screenshot, we have prepared a sample, in which the first two series are rendered as stackingColumn and for third series we have used spline type and bind it to the secondary Y axis, to achieve your requirement. Find the code snippet below.
JS: $("#container").ejChart( { //Axes to add spline series axes: [{ majorGridLines: { visible: false }, orientation: 'Vertical', opposedPosition: true, axisLine: { visible: false }, name: 'yAxis', range: { min: 0, max: 12, interval: 2 } } ], series: [ { //... type: 'stackingcolumn', }, { //... type: 'stackingcolumn', }, { //... yAxisName: 'yAxis', type:"spline" }, ], }); |
Screenshot:
Sample for reference can be find from below link.
Thanks,
Dharani.