Dashboards & Visualizations

Show customized tool tip on mousehover for all the bars available for a specific legend on a bar chart

viramamo
Explorer

Hi Splunkers,

I am trying to achieve a customized tool tip to be shown for all the available bars in the chart on mousehover on a specific legend of a specific bar in a  bar chart.

I have checked different answers, but still finding difficult crack this one.

For reference please find the image attached, 

1) Tool tip should be customized with only the number shown below, need to remove the other information.

2) On mousehover on any one of the bars, the tooltip with the value count(number) for other bars should also be displayed on their respective bars along with bar on which the mousehover was happening.

ex: In below bar chart, the tool tip on mousehover on the left most bar should also bring the tool tip for the other 3 bars available to its right in their respective bars. Where the tooltip should only contain the passed(legend) value, which is total count/number of passed.

Please suggest me the available options, which I can try,.

Advance thanks for the support.

viramamo_2-1620754923239.png

 

 

Labels (5)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

1) Possible with CSS

 

div[id="panelid"] div.highcharts-tooltip table.highcharts-tooltip tbody tr:nth-child(1),
div[id="panelid"] div.highcharts-tooltip table.highcharts-tooltip tbody tr:nth-child(2) td:nth-child(1) {
    display: none !important;
}

 

2) Not possible with CSS as only one tooltip is displayed at any one time and the data for the other bars is not present in table.

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...