ОТВЕТ НА САМОСТОЯТЕЛЬНОСТЬ: см. Дополнительную логику, чтобы добавить слушателя только в подмножество диаграмм, для которых мы специально хотим использовать поведение трекпадаКроме того, я добавил некоторую логику, чтобы заставить шаги быть целыми числами, а не входить в отрицательную или супер положительную территорию.Работает потрясающе!Highcharts.wrap (Highcharts.Chart.prototype, 'render', function (continue) {var chart = this;
proceed.call(chart);
if (chart.options['chart']['type'] === "xrange" && chart.options['yAxis'][0]['scrollbar']['enabled']) {
// Add the mousewheel event
Highcharts.addEvent(chart.container, document.onmousewheel === undefined ? 'DOMMouseScroll' : 'mousewheel', function (event) {
var delta, diff, extr, newMax, newMin, step, axis = chart.yAxis[0];
e = chart.pointer.normalize(event);
// Firefox uses e.detail, WebKit and IE uses wheelDelta
delta = e.detail || -(e.wheelDelta / 120);
delta = delta < 0 ? 1 : -1;
/* Up or Down */
if (chart.isInsidePlot(e.chartX - chart.plotLeft, e.chartY - chart.plotTop)) {
extr = axis.getExtremes();
diff = extr.max - extr.min;
step = diff / 5; /* move by fifths */
step = step > 1 ? Math.ceil(step) : 1; /* Min step is 1, Move by whole numbers */
step = step * delta; /* Up/Down */
// todo some logic for refuse to move ?
if (step > 0) {
/* UP */
if (extr.max + step > extr.dataMax) {
newMax = extr.dataMax;
newMin = extr.dataMax - diff; /* Enforce window not getting too small */
} else {
newMin = extr.min + step;
newMax = extr.max + step;
}
} else {
/* DOWN */
if (extr.min + step < 0) {
newMin = 0;
newMax = diff;
} else {
newMin = extr.min + step;
newMax = extr.max + step;
}
}
axis.setExtremes(newMin, newMax, true, false);
}
stopEvent(event); // Issue #5011, returning false from non-jQuery event does not prevent default
return false;
});
}
});
}());