I have a chart of type"scatter" that I want to change the size of the data point dots, depending on the value at the y axis. fiddle: http://jsfiddle.net/g14dkv63/1/ the above example sets the radius of the dots to '8',
plotOptions: {
series: {
marker: {
radius: 8
}
}
},
however is it possible to set the radius dynamically depending on the count/value of the dot, given the range of radius between 2px to 20px, 2px for the min value and 20px for the max value.