Dashboards & Visualizations

What is the second label on my pie

BigShak
Explorer

Hello there,

pie.png

Can someone explain to me why there is a second "average" when I hover one slice of the pie chart?

The first "average" is my calculation, the second with the % ("average%") came out of nowhere and I don't know why they have different results.

Can i get rid of it?

In case you need my search :

 

 

index=blabla | stats count by category | eventstats sum(count) as total | eval average=round((count/total)*100,2) | sort 10 - average | fields category average

 

 

Thanks.

Labels (2)
0 Karma
1 Solution

ITWhisperer
SplunkTrust
SplunkTrust

Is it probably (helpfully) put in by the chart viz.

You can modify this with some CSS

    <panel depends="$stayhidden$">
      <html>
        <style>
          #panel_id_for_pie table.highcharts-tooltip tbody tr:nth-child(2) td{
            display:none !important;
          }
        </style>
      </html>
    </panel>
    <panel id="panel_id_for_pie">

View solution in original post

0 Karma

ITWhisperer
SplunkTrust
SplunkTrust

Is it probably (helpfully) put in by the chart viz.

You can modify this with some CSS

    <panel depends="$stayhidden$">
      <html>
        <style>
          #panel_id_for_pie table.highcharts-tooltip tbody tr:nth-child(2) td{
            display:none !important;
          }
        </style>
      </html>
    </panel>
    <panel id="panel_id_for_pie">
0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...