Splunk Search

How to change charting.fieldColors through JS of already rendered chart?

seva98
Path Finder

Hi, does anyone know how can I change fieldColors after chart was rendered?

Thing is that we have two different visualizations and I need to sync colors when both are ready. I am able to read colors from the second vizualtion but setting it through following commands doesn't work even when I hide/show and/or render the chart when setting colors.

var chartview = mvc.Components.get("chartid");
// didn't work
chartview.settings.set("charting.fieldColors",'{"sth":0x65a637}');
// also didn't work
chartview.options["charting.fieldColors"]='{"sth":0x65a637}';
0 Karma

niketn
Legend

@seva98 what are the queries in the two visualizations you are using? What are the visualizations? Also how is the color being applied in the second chart are you using charting.fieldColors or charting.seriesColors? If charting.fieldColors is being applied, why can't same be applied to the first chart?

____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

seva98
Path Finder

@niketnilay I am not able to share code from the project as it is private but I will share some mock code that is very similar. I am able to retrieve data from the first custom visualization in following format:

var colorCollection = {
"a": "0xff7f0e",
"b": "0xeb5faa",
"c": "0xff3f0e"
}

And I need to set this color colletion to corresponding "a", "b" and "c" areas in area chart. The custom visualziation takes longer time to load so I have to update area chart after custom visualization has been loaded.

This code was used to change colors but it doesn't work now:

var vizualization = mvc.Components.get("vizualization_area_chart");
vizualization.getVisualization(function(chartView) {
            chartView.settings.set({ "charting.fieldColors": stringifyCollection(colorsCollection) });
        });
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

What Is Splunk? Here’s What You Can Do with Splunk

Hey Splunk Community, we know you know Splunk. You likely leverage its unparalleled ability to ingest, index, ...

Level Up Your .conf25: Splunk Arcade Comes to Boston

With .conf25 right around the corner in Boston, there’s a lot to look forward to — inspiring keynotes, ...

Manual Instrumentation with Splunk Observability Cloud: How to Instrument Frontend ...

Although it might seem daunting, as we’ve seen in this series, manual instrumentation can be straightforward ...