I use highcharts, and need to tooltip and dataLabels in pie chart.
I have problem with dataLabels when in RTL direction.
I use this config:
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
style: {
fontSize: '15px',
fontFamily: 'tahoma',
direction: 'rtl',
},
},
},
},
Result has a bug that you can see in this image:
See online: https://jsfiddle.net/NabiKAZ/h4kv0t9v/
As research and suggest official site for RTL mode, I enabled useHTML: true:
Results OK, But data labels is not support mouse hover for show tooltip!
See online: https://jsfiddle.net/NabiKAZ/h4kv0t9v/1/
And I try useHTML: false with remove direction: rtl:
As you see data label show in default LTR mode but is support mouse hover and clickable for show tooltips.
See online: https://jsfiddle.net/NabiKAZ/h4kv0t9v/2/
Sure it's a bug of highcharts and I hope to resolve it by official site.
But now I need data label in RTL mode, and show default tooltip when hover it and also clickable for focus on related data series.
How can I resolve it?!


