Placing Labels Inside Pie Chart Slices (highchart)
Using Highchart. I am positioning the labels inside the slices using distance and it centers well on mobile, but not on tablets or desktops. As the dimensions become larger, the la
Solution 1:
You could use a variable for the distance
-option which you've prepared beforehand. For example:
var windowSize = $(window).width();
var distance = -60;
if(windowSize > 700)
distance -= 30;
// else if...
And in your plotOptions.pie.dataLabels
:
distance: distance
Post a Comment for "Placing Labels Inside Pie Chart Slices (highchart)"