Chart Axis title

Is there a way to dynamically change the xAxis title on a chart ? The title property does not seem to take a function.

Hello,
You can redefine the property via config.

$$('chart').config.xAxis.title = "new value";
$$('chart').refresh();

https://snippet.webix.com/1dd4qz8n

That works. Thanks