Hi, is it possible to label the chart axis? Thanks.
Labelling the axis
Yes, please, insert the code below to Dashboard -> Advanced tab:
[code]var handlers = {};
handlers.preRender = function(config, logger) {
config.categoryAxis.title = {
text: “Category Axis”
}
config.valueAxis.title = {
text: “Value Axis”
}
logger.debug('Configuration: ', config);
return true;
}[/code]
1 Like
Thank you Dmitry, that’s fantastic.