我需要使用选项或设置选项动态设置Kendo UI股票图表类别轴和值轴标题。
任何人都能为我提供一个有效的例子吗?
答案 0 :(得分:1)
您可以动态更改标题:
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();