我想寫一個'拖'的包裝功能,以便當我點擊鼠標並拖動鼠標時,我可以得到xAxis上選定區域的最小/最大值。當我嘗試以下時,我可以看到e是一個MouseEvent,但是,我無法看到e.min和e.max(它們是未定義的)。highcharts包裝功能'拖'
Highcharts.wrap(Highcharts.Pointer.prototype, "drag", function(p, e) {
console.log('drag started');
console.log(e);
console.log(e.min, e.max);
p.call(this, e);
});
有誰知道有沒有辦法讓xAxis上的選定區域的邊界?
非常感謝!
沒有它解決您的問題http://stackoverflow.com/questions/32528010/highchart-select -an-area-to-show-some-info-by-clicking-and-drag-mouse-but-not-re –
@NishithChaturvedi不是,你所描述的那個是關於在圖表上拖動數據點的,但是,我的問題是要獲得變焦在釋放鼠標之前在圖表上選擇的區域。它更類似於這個http://jsfiddle.net/highcharts/K7pN9/。當你點擊鼠標並拖動時,你會看到一個可以放大的區域,但是我想在釋放之前獲得所需的數據。 –