When I make a pie chart using the OutSystemsCharts pie chart when you hover over the chart the chart title comes up. This is overlapping the pie chart which is annoying. I looked in the HC documentation and can't find a way to turn it off. Anyone gotten this hover title to go away?
You mean the one that says "chart"? Yeah, that's quite annoying. It's generated by the HighChart accessibility stuff. You can disable it by the following JSON:
{ accessibility : {enabled: false}}
Not sure what more it turns off though, you might make your app less accessible for those that need the features.
I have had the same issue and this solution worked fine for me.Thanks @Kilian Hekhuis !!
Hi Jason,
You need to put below JSON in HishchartJSON property to hide the title -
"{ tooltip: { enabled: false }}"
https://personal-r5hrdvm3.outsystemscloud.com/SampleRoleApp/ChartSample
Thanks
Vinod