19
Views
6
Comments
Solved
Disable tooltip Charts V3.1.0
Application Type
Reactive

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.

Champion
Solution

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.

Champion

@Niels Favreau  I believe you are speaking to me. I advice you to read the full answer instead writing comments without reason!

@Paulo Torres 

It worked!

Thanks.

Champion

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!

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.