<?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: Display only overlay values in a bar chart Splunk 9.3.x in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710562#M58139</link>
    <description>&lt;P&gt;Yeah it works sorry i need to active the showDataLabels in the charting options.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot&lt;/P&gt;</description>
    <pubDate>Tue, 04 Feb 2025 09:05:01 GMT</pubDate>
    <dc:creator>Federico92</dc:creator>
    <dc:date>2025-02-04T09:05:01Z</dc:date>
    <item>
      <title>Display only overlay values in a bar chart Splunk 9.3.x</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710498#M58130</link>
      <description>&lt;P&gt;Hi everyone.&lt;BR /&gt;&lt;BR /&gt;I need to modify this bar chart&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Federico92_0-1738596637295.png" style="width: 675px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/34349i9DD4965726839D00/image-dimensions/675x167?v=v2" width="675" height="167" role="button" title="Federico92_0-1738596637295.png" alt="Federico92_0-1738596637295.png" /&gt;&lt;/span&gt;&lt;BR /&gt;In order to hide the overlay lay and display the overlay values. Also need to remove "Total" value from the legend.&lt;BR /&gt;&lt;BR /&gt;This is my CSS configurations that doesn't works:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;row&amp;gt;&lt;BR /&gt;&amp;lt;panel depends="$css$"&amp;gt;&lt;BR /&gt;&amp;lt;title&amp;gt;CSS&amp;lt;/title&amp;gt;&lt;BR /&gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;style/&amp;gt;&lt;BR /&gt;&amp;lt;!-- hide numbers on the chart --&amp;gt;&lt;BR /&gt;#hide_number_distribution .highcharts-data-label text tspan&lt;BR /&gt;{&lt;BR /&gt;visibility:hidden;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&amp;lt;!-- show numbers for "Total" --&amp;gt;&lt;BR /&gt;#hide_number_distribution .highcharts-series-0 .highcharts-data-label text tspan&lt;BR /&gt;{&lt;BR /&gt;visibility:visible !important;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&amp;lt;!-- hide line for "Total" --&amp;gt;&lt;BR /&gt;#hide_number_distribution .highcharts-series-0.highcharts-line-series path&lt;BR /&gt;{&lt;BR /&gt;visibility:hidden !important;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&amp;lt;!-- hide "Total" from the legend --&amp;gt;&lt;BR /&gt;#hide_number_distribution .highcharts-legend-item .highcharts-line-series .highcharts-color-undefined .highcharts-series-0&lt;BR /&gt;{&lt;BR /&gt;visibility:hidden !important;&lt;BR /&gt;}&lt;/P&gt;&lt;P&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;&lt;P&gt;&lt;BR /&gt;The id "hide_number_distribution" is on the panel (not on the chart) and the dataLabels option for the chart is:&lt;BR /&gt;&amp;lt;option name="charting.chart.showDataLabels"&amp;gt;none&amp;lt;/option&amp;gt;&lt;BR /&gt;&lt;BR /&gt;Can anyone help me to understand why this not works and fix it?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2025 15:35:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710498#M58130</guid>
      <dc:creator>Federico92</dc:creator>
      <dc:date>2025-02-03T15:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Display only overlay values in a bar chart Splunk 9.3.x</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710514#M58132</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;      &amp;lt;html&amp;gt;
        &amp;lt;style&amp;gt;
           #hide_number_distribution .highcharts-data-label text {
            display: none !important;
          }
           #hide_number_distribution .highcharts-series-0 .highcharts-data-label text {
            display: block !important;
          }
           #hide_number_distribution .highcharts-series-0 path,
           #hide_number_distribution .highcharts-legend .highcharts-series-0 text {
            display: none !important;
          }
        &amp;lt;/style&amp;gt;
      &amp;lt;/html&amp;gt;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 03 Feb 2025 17:51:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710514#M58132</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-02-03T17:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Display only overlay values in a bar chart Splunk 9.3.x</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710554#M58135</link>
      <description>&lt;P&gt;Now the overlay line and the "Total" value in the legend are hidden.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Overlay values to display are not visible yet&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Federico92_0-1738656506377.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/34357i1B6521FEDDE9CD53/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Federico92_0-1738656506377.png" alt="Federico92_0-1738656506377.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 08:08:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710554#M58135</guid>
      <dc:creator>Federico92</dc:creator>
      <dc:date>2025-02-04T08:08:38Z</dc:date>
    </item>
    <item>
      <title>Re: Display only overlay values in a bar chart Splunk 9.3.x</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710559#M58137</link>
      <description>&lt;P&gt;And here it is working&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1738658342529.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/34358iD896C71043205F7C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1738658342529.png" alt="ITWhisperer_0-1738658342529.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Please share your search and dashboard source (preferably in a code block &amp;lt;/&amp;gt;) to see if there is something else going on&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 08:40:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710559#M58137</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-02-04T08:40:39Z</dc:date>
    </item>
    <item>
      <title>Re: Display only overlay values in a bar chart Splunk 9.3.x</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710562#M58139</link>
      <description>&lt;P&gt;Yeah it works sorry i need to active the showDataLabels in the charting options.&lt;BR /&gt;&lt;BR /&gt;Thanks a lot&lt;/P&gt;</description>
      <pubDate>Tue, 04 Feb 2025 09:05:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Display-only-overlay-values-in-a-bar-chart-Splunk-9-3-x/m-p/710562#M58139</guid>
      <dc:creator>Federico92</dc:creator>
      <dc:date>2025-02-04T09:05:01Z</dc:date>
    </item>
  </channel>
</rss>

