Hi Astroboy,
I have a piece of Javascript code with me that might do the trick for you. You may paste this code on the footer inside your DataPage, but make sure to disable the HTML editor on the advanced tab. Here's the code:
<script type="text/javascript">
document.addEventListener('DataPageReady', chartUpdateHandler)
function chartUpdateHandler(event) {
var cleaner = function(interv) {
clearInterval(interv);
}
let interv = setInterval(() => {
if (!!Highcharts.charts[0]) {
console.log(Highcharts.charts[0]);
Highcharts.charts[0].update({
title: {
text: 'Insert Text Here',
align: 'left',
x: 70
}
});
cleaner(interv);
}
}, 200);
}
</script>
Note: You have to insert the title that you want to use directly on this code. To do that, simply replace the text *Insert Text Here* with the title that you want to set for your chart.