Dashboards & Visualizations

Bar Chart

sanjay_shrestha
Contributor

Hi,

Here is my data looks like:

project     status
p1            s1
p2            s3
p3           
p4            s1
p5            s2

I would like to create a bar chart as below:
alt text

Thanks,

Sanjay

Tags (1)
0 Karma

sanjay_shrestha
Contributor

Thanks for the solution.

0 Karma

somesoni2
Revered Legend

I couldn't fine any options for that so far. Here is another tweak see if this is acceptable for you.

search giving field project, status| eval nStatus=case(status="s1",1,status="s2",2,status="s3",3,1=1,0) | chart max(nStatus) as MyStatus over project by status | rename VALUE as NA

status will appear as legend and bars will have different color for each status.

0 Karma

sanjay_shrestha
Contributor

I was able to create using numerical values, however it would not be verbose. Is there a way to change labels or display reference matching table.

0 Karma

rahulroy_splunk
Path Finder

something like this

search giving field project, status | eval nStatus=case(status="s1",1,status="s2",2,status="s3",3,1=1,4) | table project, nStatus

somesoni2
Revered Legend

I believe the Y axis values have to be numeric, which is not in your case. Other option could be to use a numeric code for your status and do a chart based on that.

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, ...