AmCharts4 禁用雷达图 resize/zoom

AmCharts4 disable radar chart resize/zoom

我的 React 应用程序中有这个 AmCharts4 雷达图,有什么方法可以禁用点击拖动缩放吗? 谢谢

Image of the chart

假设您指的是图表光标的缩放,您必须将光标对象的 behavior 设置为 "none":

chart.cursor = new am4charts.RadarCursor();
chart.cursor.behavior = "none";

您可以在链接文档和 this tutorial 中找到有效属性列表。