嗨,我正在画我的图,
Data.chart.series[0].remove(); Data.chart.xAxis[0].axisTitle.attr({ text: xAxisTitle}); //Data.chart.xAxis[0].categories = xAxisCategories; Data.chart.addSeries({ name: yAxisTitle,data: formattedData,pointInterval: pointInterval }); Data.chart.redraw();
我在文档中看不到任何改变xAxis类别的东西,这是可能的吗?我看不到任何改变标题的东西,但是设法在线上获取了一个片段,我真的需要避免破坏&重新创建图。
解决方法
您可以使用Axis对象上找到的setCategories方法来执行此操作。请参见轴的参考文档:
http://www.highcharts.com/ref/#axis-object