gpt4 book ai didi

javascript - highstock 图表使用 "Esc"取消缩放区域选择

转载 作者:行者123 更新时间:2023-12-02 15:58:34 25 4
gpt4 key购买 nike

有人知道如何在将鼠标拖动到图表上但尚未释放鼠标后取消缩放区域选择吗?

最佳答案

查看连接的请求 here .

例如:http://jsfiddle.net/highcharts/72gA7/7/

片段:

// Generic code to add zoom cancelling by hitting escape
Highcharts.Pointer.prototype.cancelDrag = function () {
if (this.selectionMarker) {
this.selectionMarker = this.selectionMarker.destroy();
}
this.drop();
};
$(document).keyup(function (e) {
if (e.charCode == 27) { // esc
$.each(Highcharts.charts, function () {
this.pointer.cancelDrag();
});
} // esc
});

关于javascript - highstock 图表使用 "Esc"取消缩放区域选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31395053/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com