I have a dynamic pie chart. At the click of a button, data labels are displayed when
dataLablestrue to show data points, and when it is false, it should be hidden.
plotOptions: {
pie: {
allowPointSelect: false,
cursor: 'pointer',
dataLabels: {
enabled: false
}
}
}
source
share