Dashboards & Visualizations

Bar color based on values ,using timechart , how to achieve it !

akhil4mdev
Explorer

I have a table

_time. 5.4. 5.6

05-1-2018. 0. 1
05-02-201&. 1. 0

It’s a time chart

So I wanna color the bar based on the coloumn values
Here it’s 5.4 and 5.6

I want below 6 to be red and above shd be green

Tags (1)
0 Karma

Azeemering
Builder

Have a look at the Splunk Dashboard example app: https://splunkbase.splunk.com/app/1603
There are great examples that show you this exact usage under "Table Elements"

Example xml:

    <panel>
      <table>
        <search>
          <query>
            index=_internal | stats count by sourcetype
          </query>
          <earliest>-15m</earliest>
          <latest>now</latest>
        </search>
        <format type="color" field="sourcetype">
          <colorPalette type="map">{"splunkd":#F7BC38,"scheduler":#6A5C9E}</colorPalette>
        </format>
        <format type="color" field="count">
          <colorPalette type="list">[#65A637,#6DB7C6,#F7BC38,#F58F39,#D93F3C]</colorPalette>
          <scale type="threshold">0,30,70,100</scale>
        </format>
      </table>
      <html>
        <ul>
          <li>"sourcetype" column is using custom defined colors based on individual cell values.</li>
          <li>"count" column is using custom defined colors based on cell value ranges.</li>
        </ul>
      </html>
0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...