Hello everyone, I have a Raw data table and i want to show a message when a column is hovered, kind of a description of the column, is there any way to do that?
The Header tooltips is a configuration you can use for that, here is an example:
.set("headerTooltips", {
column_1: "Tooltip text",
column_2: "<div>Tooltip text <br/> Other line</div>",
})
It was very easy thanks for the help, but, is just that it disappears too quickly
Well, both the time it is shown and the time it is hidden are configurable, for this you can use these two properties:
.set("tooltipShowDelay", 0)
.set("tooltipHideDelay", 1500)
1 Like
Great!, with that all is complete and working good, thanks for your help