使用 AM Charts 4,直到现在我一直使用图表的方式是我做类似的事情
var categoryAxis = this.__chart.xAxes.push(new am4charts.CategoryAxis());
categoryAxis.renderer.grid.template.location = 0;
categoryAxis.dataFields.category = "category";
categoryAxis.renderer.minGridDistance = 120;
var valueAxis = this.__chart.yAxes.push(new am4charts.ValueAxis());
valueAxis.title.text = 'Y-AXIS:;
valueAxis.cursorTooltipEnabled = false;
有没有办法将所有选项放入单个对象并将该对象传递进去?在这种情况下,如果我想添加另一个选项,我只需要更新对象,而不是添加一行代码。