Hi June,
Thanks for contacting Syncfusion Support.
We have analyzed your query and prepared a sample based on your requirement. In the sample, we have customized the rounded edge rectangle in the top location only for stacking column series.
Please find the code snippet below
|
[JS]
$("#container").ejChart(
{
load:"onChartLoad",
});
function onChartLoad(sender){
for(var i=0;i<sender.model.series.length;i++)
sender.model.series[i].cornerRadius = { topLeft:15, topRight:15 };
} |
In the above code, we are triggering the load event. In the event, we have created the cornerRadius object with its top values which is assigning to the series.
And you can find the sample from the below location.
Please find the output of the sample below
Please let us know if you have any concern.
Regards,
Saravana Kumar K.