Dashboards & Visualizations

Need help removing the y-axis label from the charts in the trelis

spammenot66
Contributor

Hi

I'm trying to remove the 100s from the y-axis label. Using chrome, and inspecting the element, when use the css noted below it works. When i use the in the simplexml it doesn't

 

 

 

 

<html>
  <style>
    #trellis g.highcharts-yaxis-labels &gt; text{
      visibility: hidden; !important;
      display: none !important;
  }
 
        </style>
      </html>

 

 

 

 

spammenot66_0-1617150199336.png

 

Labels (3)
0 Karma
1 Solution

manjunathmeti
Champion

hi @spammenot66,

Try this:

<row>
    <html>
      <style>
        g.highcharts-axis-labels.highcharts-yaxis-labels {
          display: none !important;
        }
       </style>
    </html>
</row>

 

If this reply helps you, a like would be appreciated.

View solution in original post

manjunathmeti
Champion

hi @spammenot66,

Try this:

<row>
    <html>
      <style>
        g.highcharts-axis-labels.highcharts-yaxis-labels {
          display: none !important;
        }
       </style>
    </html>
</row>

 

If this reply helps you, a like would be appreciated.

Get Updates on the Splunk Community!

Splunk Decoded: Service Maps vs Service Analyzer Tree View vs Flow Maps

It’s Monday morning, and your phone is buzzing with alert escalations – your customer-facing portal is running ...

What’s New in Splunk Observability – September 2025

What's NewWe are excited to announce the latest enhancements to Splunk Observability, designed to help ITOps ...

Fun with Regular Expression - multiples of nine

Fun with Regular Expression - multiples of nineThis challenge was first posted on Slack #regex channel ...