Hello.
I need to disable the tooltip of a chart and I can't do it.
With the V3.1.0 of OutSystems Charts (Reactive) I can't find the HighchartsJSON API.
Can you help me?
Thanks.
Hi Pedro,
As we don't have in new version the ExtendedJSON you need an workaround I think.
Try to add this CSS in your page:
.highcharts-tooltip {
display: none;
}
If this works you can make a selector to put this in the theme or make a JS to remove the class from the page after the load.
Regards
The CSS should be added on theme level, not on page level.
@Niels Favreau I believe you are speaking to me. I advice you to read the full answer instead writing comments without reason!
Sorry, missed the last sentence
@Paulo Torres
It worked!
Glad to help you @Pedro ALMEIDA.
Try to create a selector only for your chart, you can use the extendedClass for that and with this you can move the CSS to your theme!