我需要使用选项或setoptions动态设置Kendo UI股票图表类别轴和价值轴标题。
有人能给我举个工作例子吗?
您可以动态更改标题,如下所示:
var stockChart = $("#stock-chart").data("kendoStockChart");
stockChart.options.valueAxis[0].title.text = "Your new value axis title here";
stockChart.options.categoryAxis[0].title.text = "Your new column axis title here";
stockChart.refresh();