AmCharts 甘特图 ZoomTIndexes 不工作
AmCharts Gantt chart ZoomTIndexes not working
这是我的代码
listeners: [{
event: "init",
method: function (e) {
e.chart.zoomToIndexes(0, 19);
}
}],
这不适用于 Amcharts 甘特图
我解决了问题..
listeners: [{
event: "init",
method: function (e) {
e.chart.valueAxis.zoomToValues(new Date(startZoomDate), new Date(endZoomDate));
}
}]
以上代码对我来说工作得很好!
谢谢
这是我的代码
listeners: [{
event: "init",
method: function (e) {
e.chart.zoomToIndexes(0, 19);
}
}],
这不适用于 Amcharts 甘特图
我解决了问题..
listeners: [{
event: "init",
method: function (e) {
e.chart.valueAxis.zoomToValues(new Date(startZoomDate), new Date(endZoomDate));
}
}]
以上代码对我来说工作得很好!
谢谢