我已经搜索了 API,并且有很多关于禁用和设置滚动条和导航器样式的示例。我想保持两者完好无损,但禁止车把可拖动。我试着玩这个小提琴的风格:
navigator: {
handles: {
backgroundColor: 'yellow',
borderColor: 'red'
}
}
但根据 API,只有 backgroundColor 和 borderColor 是可访问的属性。
我已经搜索了 API,并且有很多关于禁用和设置滚动条和导航器样式的示例。我想保持两者完好无损,但禁止车把可拖动。我试着玩这个小提琴的风格:
navigator: {
handles: {
backgroundColor: 'yellow',
borderColor: 'red'
}
}
但根据 API,只有 backgroundColor 和 borderColor 是可访问的属性。
您可以使用 setExtremes:
xAxis: {
minRange:6 * 30 * 24 * 3600 * 1000,
events: {
afterSetExtremes: function(e) {
var maxDistance = 10 * 30 * 24 * 3600 * 1000; //8 months time
var xaxis = this;
if ((e.max - e.min) > maxDistance) {
var min = e.max - maxDistance;
var max = e.max;
window.setTimeout(function() {
xaxis.setExtremes(min, max);
}, 1);
}
}
}
},