我需要使用选项或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();

09-11 14:27