I want to disable mouse hover feature on bar chart, any option to disable it in xml itself??
[UPDATED] @harish_ka, notice that there is a space required between id and class in CSS selector
. Refer to W3School for details: https://www.w3schools.com/cssref/css_selectors.asp
Following is updated code with panel id.
<row>
<panel id="YourChartID">
<html depends="$alwaysHideCSSStyle$">
<style>
#YourChartID .highcharts-tooltip{
visibility:hidden !important;
}
</style>
</html>
</panel>
</row>
@harish_ka, you can override CSS directly in Simple XML. Please try the following CSS override to hide the Tooltip. You can make it specific to particular chart (bar/column etc) then you can add id="YourChartID"
and use CSS selector as #YourChartID .highcharts-tooltip
<row>
<panel>
<html depends="$alwaysHideCSSStyle$">
<style>
.highcharts-tooltip{
visibility:hidden !important;
}
</style>
</html>
</panel>
</row>
[UPDATED] @harish_ka, notice that there is a space required between id and class in CSS selector
. Refer to W3School for details: https://www.w3schools.com/cssref/css_selectors.asp
Following is updated code with panel id.
<row>
<panel id="YourChartID">
<html depends="$alwaysHideCSSStyle$">
<style>
#YourChartID .highcharts-tooltip{
visibility:hidden !important;
}
</style>
</html>
</panel>
</row>
@harish_ka, you can override CSS directly in Simple XML. Please try the following CSS override to hide the Tooltip. You can make it specific to particular chart (bar/column etc) then you can add id="YourChartID"
and use CSS selector as #YourChartID .highcharts-tooltip
<row>
<panel>
<html depends="$alwaysHideCSSStyle$">
<style>
.highcharts-tooltip{
visibility:hidden !important;
}
</style>
</html>
</panel>
</row>
@niketn ... how can we disable hover for a particular field in bar chart ?
like for table fields used below html
<row depends="$alwaysHideCSSPanel$">
<panel>
<html>
<style>
#disablecursorapp table tbody tr td:nth-child(2){
cursor: default !important;
}
</style>
</html>
</panel>
</row>
@vikashperiwal unfortunately this will not be just CSS based solution as there is no direct link between Chart series being hovered and tooltip's DOM. You may have to try jQuery based approach. Try to adjust the example as per your needs: https://community.splunk.com/t5/Archive/How-to-change-the-dislay-value-in-graph/td-p/375473
Hi @niketnilay, i tried like this and didn't work,
<panel id="aa">
<html depends="$alwaysHideCSSStyle$">
<style>
#aa.highcharts-tooltip{
visibility:hidden;
}
</style>
</html>
<title>ABCD</title>
<chart>
Am i doing the right way?
@harish_ka, I have updated my answer with id. You need a space between ID and Class CSS Selector.
Cool.. That worked
Thanks @niketnilay
Don't forget the !important
as it is what makes it take priority over existing CSS.
Yes, i tried with "!important", still it didn't work..
The "id" should be created for Panel only right?
look at this answer
https://answers.splunk.com/answers/330974/remove-mouse-over-from-panel-in-the-631-update.html
Let me know if it helps!
Thanks for your response Mayurr98.
Is there any charting option available to add in "XML" itself to disable it ..
@harish_ka
No, there is no charting option available to add in "XML" as of now.