We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1eef93b commit 48150adCopy full SHA for 48150ad
lib/glow/primitives.js
@@ -55,7 +55,14 @@
55
}
56
57
58
-
+ var plugins_safe = $.plot.plugins
59
+ function set_crosshairs_disabled(value) {
60
+ if (value) {
61
+ $.plot.plugins = []
62
+ } else {
63
+ $.plot.plugins = plugins_safe
64
+ }
65
66
67
function makeTrail(obj, args) {
68
obj.__interval = -1 // indicate no interval setting; add point every render (or determined by pps)
@@ -3724,6 +3731,7 @@
3724
3731
button: button,
3725
3732
slider: slider,
3726
3733
menu: menu,
3734
+ set_crosshairs_disabled: set_crosshairs_disabled,
3727
3735
3728
3736
3729
3737
Export(exports)
0 commit comments