Labelling the axis

Hi, is it possible to label the chart axis? Thanks.

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]

2 Likes

Thank you Dmitry, that’s fantastic.