<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to disable mouse hover on bar chart in XML in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337125#M21896</link>
    <description>&lt;P&gt;@harish_ka, I have updated my answer with id. You need a space between ID and Class CSS Selector.&lt;/P&gt;</description>
    <pubDate>Wed, 13 Dec 2017 07:52:29 GMT</pubDate>
    <dc:creator>niketn</dc:creator>
    <dc:date>2017-12-13T07:52:29Z</dc:date>
    <item>
      <title>How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337117#M21888</link>
      <description>&lt;P&gt;I want to disable mouse hover feature on bar chart, any option to disable it in xml itself??&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 09:12:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337117#M21888</guid>
      <dc:creator>harish_ka</dc:creator>
      <dc:date>2017-12-12T09:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337118#M21889</link>
      <description>&lt;P&gt;look at this answer&lt;BR /&gt;
&lt;A href="https://answers.splunk.com/answers/330974/remove-mouse-over-from-panel-in-the-631-update.html"&gt;https://answers.splunk.com/answers/330974/remove-mouse-over-from-panel-in-the-631-update.html&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Let me know if it helps!&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 09:17:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337118#M21889</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2017-12-12T09:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337119#M21890</link>
      <description>&lt;P&gt;[UPDATED] &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/103806"&gt;@harish_ka&lt;/a&gt;, notice that there is a &lt;CODE&gt;space required between id and class in CSS selector&lt;/CODE&gt;. Refer to W3School for details: &lt;A href="https://www.w3schools.com/cssref/css_selectors.asp" target="_blank"&gt;https://www.w3schools.com/cssref/css_selectors.asp&lt;/A&gt;&lt;BR /&gt;
Following is updated code with panel id.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;   &amp;lt;row&amp;gt;
     &amp;lt;panel id="YourChartID"&amp;gt;
       &amp;lt;html depends="$alwaysHideCSSStyle$"&amp;gt;
         &amp;lt;style&amp;gt;
           #YourChartID .highcharts-tooltip{
             visibility:hidden !important;
           }
         &amp;lt;/style&amp;gt;
       &amp;lt;/html&amp;gt;
     &amp;lt;/panel&amp;gt;
    &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;HR /&gt;

&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/103806"&gt;@harish_ka&lt;/a&gt;, 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 &lt;CODE&gt;id="YourChartID"&lt;/CODE&gt; and use CSS selector as &lt;CODE&gt;#YourChartID .highcharts-tooltip&lt;/CODE&gt;&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;html depends="$alwaysHideCSSStyle$"&amp;gt;
        &amp;lt;style&amp;gt;
          .highcharts-tooltip{
            visibility:hidden !important;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;
    &amp;lt;/panel&amp;gt;
   &amp;lt;/row&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 29 Sep 2020 17:13:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337119#M21890</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-09-29T17:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337120#M21891</link>
      <description>&lt;P&gt;Thanks for your response Mayurr98. &lt;BR /&gt;
Is there any charting option available to add in "XML" itself to disable it ..&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 09:27:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337120#M21891</guid>
      <dc:creator>harish_ka</dc:creator>
      <dc:date>2017-12-12T09:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337121#M21892</link>
      <description>&lt;P&gt;@harish_ka &lt;BR /&gt;
No, there is no charting option available to add in "XML" as of now.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 09:45:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337121#M21892</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2017-12-12T09:45:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337122#M21893</link>
      <description>&lt;P&gt;Hi @niketnilay, i tried like this and didn't work, &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;panel id="aa"&amp;gt;
  &amp;lt;html depends="$alwaysHideCSSStyle$"&amp;gt;
     &amp;lt;style&amp;gt;
       #aa.highcharts-tooltip{
         visibility:hidden;
       }
     &amp;lt;/style&amp;gt;
   &amp;lt;/html&amp;gt;
  &amp;lt;title&amp;gt;ABCD&amp;lt;/title&amp;gt;
  &amp;lt;chart&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Am i doing the right way?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 11:33:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337122#M21893</guid>
      <dc:creator>harish_ka</dc:creator>
      <dc:date>2017-12-12T11:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337123#M21894</link>
      <description>&lt;P&gt;Don't forget the &lt;CODE&gt;!important&lt;/CODE&gt; as it is what makes it take priority over existing CSS.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Dec 2017 11:43:00 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337123#M21894</guid>
      <dc:creator>damien_chillet</dc:creator>
      <dc:date>2017-12-12T11:43:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337124#M21895</link>
      <description>&lt;P&gt;Yes, i tried with "!important", still it didn't work..&lt;BR /&gt;
The "id" should be created for Panel only right? &lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 06:31:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337124#M21895</guid>
      <dc:creator>harish_ka</dc:creator>
      <dc:date>2017-12-13T06:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337125#M21896</link>
      <description>&lt;P&gt;@harish_ka, I have updated my answer with id. You need a space between ID and Class CSS Selector.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 07:52:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337125#M21896</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-12-13T07:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337126#M21897</link>
      <description>&lt;P&gt;Cool.. That worked &lt;BR /&gt;
Thanks @niketnilay &lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2017 07:57:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/337126#M21897</guid>
      <dc:creator>harish_ka</dc:creator>
      <dc:date>2017-12-13T07:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/512333#M34174</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/201110"&gt;@niketn&lt;/a&gt;&amp;nbsp;... how can we disable hover for a particular field in bar chart ?&lt;/P&gt;&lt;P&gt;like for table fields used below html&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;lt;row depends="$alwaysHideCSSPanel$"&amp;gt;&lt;BR /&gt;&amp;lt;panel&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;style&amp;gt;&lt;BR /&gt;#disablecursorapp table tbody tr td:nth-child(2){&lt;BR /&gt;cursor: default !important;&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&amp;lt;/style&amp;gt;&lt;BR /&gt;&amp;lt;/html&amp;gt;&lt;BR /&gt;&amp;lt;/panel&amp;gt;&lt;BR /&gt;&amp;lt;/row&amp;gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 10:37:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/512333#M34174</guid>
      <dc:creator>vikashperiwal</dc:creator>
      <dc:date>2020-08-04T10:37:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to disable mouse hover on bar chart in XML</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/512398#M34182</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/216214"&gt;@vikashperiwal&lt;/a&gt;&amp;nbsp;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:&amp;nbsp;&lt;A href="https://community.splunk.com/t5/Archive/How-to-change-the-dislay-value-in-graph/td-p/375473" target="_blank"&gt;https://community.splunk.com/t5/Archive/How-to-change-the-dislay-value-in-graph/td-p/375473&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 15:30:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-to-disable-mouse-hover-on-bar-chart-in-XML/m-p/512398#M34182</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2020-08-04T15:30:11Z</dc:date>
    </item>
  </channel>
</rss>

