Found the solution.
I was working off of the UI demos examples:
// Update the chart
function(results, job, callback)
{
splunkjs.UI.ready(chartToken, function(){
chart.setData(results, {
"chart.stackMode": "stacked",
"seriesColors": "[FFFFFF, FFFFFF, FFFFFF]" //added this line for color configuration
})
});
}
... View more