Splunk Search

How do I change the label of the x-axis on a chart?

Hppjet
Path Finder

alt text

index="all_eqt" Plant=15 ProcessCode=T DefectCode="*" MachineNumber<26 | stats sum(TotalSquareYards) as "Total Square Yards" by DefectCode

How do I change the x-axis "TA" label to display "styles" instead?

0 Karma
1 Solution

Sukisen1981
Champion

if you want to change the x axis label , which probably is coming as 'DefectCode' you just can edit the chart type and put a custom x axis label to TA. Visualization > Format > X Axis > Ttile > Custom > (your label.)
However, I think the DefectCode field value is TA which you want to rename as Styles
For this you need to :
|eval DefectCode=if(DefectCode="TA","Styles",DefectCode) BEFORE the stats command.
Now, if you have other DefectCode types you need to append the labels you want after the last , in the if statement

View solution in original post

0 Karma

s2_splunk
Splunk Employee
Splunk Employee

Recent thread on this topic here

0 Karma

Sukisen1981
Champion

if you want to change the x axis label , which probably is coming as 'DefectCode' you just can edit the chart type and put a custom x axis label to TA. Visualization > Format > X Axis > Ttile > Custom > (your label.)
However, I think the DefectCode field value is TA which you want to rename as Styles
For this you need to :
|eval DefectCode=if(DefectCode="TA","Styles",DefectCode) BEFORE the stats command.
Now, if you have other DefectCode types you need to append the labels you want after the last , in the if statement

0 Karma
Get Updates on the Splunk Community!

Join Us for Splunk University and Get Your Bootcamp Game On!

If you know, you know! Splunk University is the vibe this summer so register today for bootcamps galore ...

.conf24 | Learning Tracks for Security, Observability, Platform, and Developers!

.conf24 is taking place at The Venetian in Las Vegas from June 11 - 14. Continue reading to learn about the ...

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...