Hi @jasuchung , A workaround for issue 1 could be adding a javascript extension to your simpleXML dashboard (see docs at https://dev.splunk.com/enterprise/docs/developapps/visualizedata/usewebframework/modifydashboards/). Script below, based on @ITWhisperer example, will add one decimal to all data values displayed in chart without it (e.g. 10 -> 10.0) require([
'jquery',
'splunkjs/mvc',
'splunkjs/mvc/simplexml/ready!'
], function ($, mvc) {
pollAvailability = () => {
if (mvc.Components.hasInstance("boldtimes")) {
// Chart loaded
let content = $("#boldtimes g.highcharts-label.highcharts-data-label.highcharts-data-label-color-undefined tspan:not(:contains(.)):first-child");
// Add the decimal to data values without it
for (let i = 0; i < content.length; ++i) {
let text = content[i].firstChild.textContent;
text += ".0";
content[i].firstChild.textContent = text;
};
} else {
// Chart not loaded yet, retry in 200ms
setTimeout(pollAvailability, 200);
}
};
setTimeout(pollAvailability, 600);
});
... View more