|
|
|
@ -2450,7 +2450,7 @@ Licensed under the MIT license.
|
|
|
|
function onMouseMove(e) {
|
|
|
|
function onMouseMove(e) {
|
|
|
|
if (options.grid.hoverable)
|
|
|
|
if (options.grid.hoverable)
|
|
|
|
triggerClickHoverEvent("plothover", e,
|
|
|
|
triggerClickHoverEvent("plothover", e,
|
|
|
|
function (s) { return !!s["hoverable"]; });
|
|
|
|
function (s) { return s["hoverable"] != false; });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function onMouseLeave(e) {
|
|
|
|
function onMouseLeave(e) {
|
|
|
|
@ -2461,7 +2461,7 @@ Licensed under the MIT license.
|
|
|
|
|
|
|
|
|
|
|
|
function onClick(e) {
|
|
|
|
function onClick(e) {
|
|
|
|
triggerClickHoverEvent("plotclick", e,
|
|
|
|
triggerClickHoverEvent("plotclick", e,
|
|
|
|
function (s) { return !!s["clickable"]; });
|
|
|
|
function (s) { return s["clickable"] != false; });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// trigger click or hover event (they send the same parameters
|
|
|
|
// trigger click or hover event (they send the same parameters
|
|
|
|
|