Apexcharts.js: Missing option to hide tooltip title

Created on 20 Sep 2018  路  9Comments  路  Source: apexcharts/apexcharts.js

Just found out that there's no way to hide tooltip title in options, only through css

.apexcharts-tooltip-title {
    display: none;
}

Most helpful comment

@fakhamatia if you want to disable green one https://stackoverflow.com/questions/55140786/removing-x-axis-tooltip-in-apex-charts

if you want to disable red one :
tooltip: { enabled :false }

All 9 comments

tooltip: {
    x: {
        show: false
    }
}

@junedchhipa probably it makes sense to update documentation for this option, as it's misleading for particular chart types, e.g. Line, Area, where only one value exist for x axis, thus it appears as Tooltip Title
image

@junedchhipa it cannot be better :+1:

How disable only read tooltip?

Screenshot from 2020-05-15 06-09-38

@fakhamatia if you want to disable green one https://stackoverflow.com/questions/55140786/removing-x-axis-tooltip-in-apex-charts

if you want to disable red one :
tooltip: { enabled :false }

As I use tooltip: { enabled :false } I'm also losing the ones on each axis (the one marked green on the picture in the comment above). I'm trying to set the settings like xaxis.tooltip.enabled: true, but no luck.

As I use tooltip: { enabled :false } I'm also losing the one on each axis (the one marked green on the picture in the comment above). I'm trying to set the settings like xaxis.tooltip.enabled: true, but no luck.

did you managed to find how to remove only one ? :) @k2042

As I use tooltip: { enabled :false } I'm also losing the one on each axis (the one marked green on the picture in the comment above). I'm trying to set the settings like xaxis.tooltip.enabled: true, but no luck.

did you managed to find how to remove only one ? :) @k2042

Nope. Still don't know if it's even possible.

Was this page helpful?
0 / 5 - 0 ratings