For my scatter chart in highcharts I would like different series to have different marker radius. Is this possible?
"plotOptions": {"series": {"marker": {"enabled": true
,"symbol": "circle"
,"radius": 15}
}
}
{
It does not work to use:
"plotOptions": {"series": {"marker": {"enabled": true
,"symbol": "circle"
,"radius": 15,20,10,5,2}
}
}
{
You can provide marker option for radius in each individual data series So series will be as
Hope this help Fiddle Link
You have to set a marker for each serie. So you have to do something like this.
I hope this helps :)