我正在尝试创建自动滚动直方图,该直方图能够显示有限数量的列,并使用每个新值向左滚动。但是我什至不能使列从可绘制区域的最右边开始。
以下是我现在的示例:https://jsfiddle.net/qadLfr5z/
Highcharts.chart('container', {
title: false,
legend: false,
tooltip: false,
credits: false,
xAxis: [{ visible: false }, { visible: false }],
yAxis: [{ visible: false }, { visible: false }],
series: [{
type: 'histogram',
xAxis: 1,
yAxis: 1,
data: data,
zIndex: -1
}],
plotOptions: {
histogram: {
binWidth: 10,
maxPointWidth: 10,
enableMouseTracking: false
}
}
});