Hi all,
Do you know how can we change the series color on this app?
I've tried < option name="charting.seriesColors" > [0x003366,0x004d99,0x0066cc,0x0080ff,0x3399ff,0x66b3ff,0x99ccff,0xcce6ff] < /option > , but it doesn't work.
Thank you in advance. Regards.
@maffreitas, unfortunately this custom visualization does not install on Splunk Enterprise 7.
But, as per the sample screenshots provided on Splunkbase seems like your statistical table can have three columns i.e. name, value, color
where in third column you can give color hex code
. Have you tried it out?
Can you try the funnel Visualization with the following run anywhere search?
| makeresults
| eval name="Field1",value="100",color="#ff634d"
| append
[| makeresults
| eval name="Field2",value="1000",color="#008080"]
| append
[| makeresults
| eval name="Field3",value="2000",color="#007fff"]
| append
[| makeresults
| eval name="Field4",value="5000",color="#ff634d"]
| table name value color
Can you try with following option ? Here count is name of the field which is being plotted.
<option name="charting.fieldColors">{Count:0x70c580}</option>
Unfortunately, it doesn't work too.
Are you using any custom app for funnel visualisation?
(https://splunkbase.splunk.com/app/3413/)
Yes, I'm using this one.