- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ManjunathN
Engager
05-29-2021
11:20 AM
How to change the font size for x axis and y axis titles in splunk. Need inputs on this.
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

kamlesh_vaghela

SplunkTrust
05-29-2021
10:36 PM
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

kamlesh_vaghela

SplunkTrust
05-29-2021
10:36 PM
Use css for styling. check below links for same.
https://docs.splunk.com/Documentation/Splunk/8.2.0/AdvancedDev/UseCSS
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
ManjunathN
Engager
05-30-2021
01:55 AM
Thanks @kamlesh_vaghela for hinting on the CSS styles.
Using inspector got the class details. Below is snippet added to the dashboard xml under style tag which helped in making the font size changes. This worked for me. Thanks!
g.highcharts-axis.highcharts-xaxis text{
font-size: 20px !important;
