如何使用 dimple.js 设置 X 轴上的刻度间隔

How to set the interval of ticks on the X-Axis using dimple.js

我正在使用以下代码使用 dimple.js 按年龄绘制与泰坦尼克号乘客相关的一些数据:

var myChart = new dimple.chart(svg, data);
var ageAxis = myChart.addCategoryAxis("x", "Age"); 
myChart.addMeasureAxis("y", "Survived");
myChart.addSeries(null, dimple.plot.line);
ageAxis.addOrderRule('Age',false);
ageAxis.ticks=5; // this doesn't seem to work unfortunately
myChart.draw();

我得到以下图表:

我想为 x 轴上的刻度定义一个间隔,只显示其中的一部分

提前致谢

您可以按照此处的答案中的说明在绘图后删除多余的标签:

cleaning axis in dynamic charts in dimple.js