echarts
Version:
A powerful charting and visualization library for browser
22 lines (16 loc) • 722 B
JavaScript
var helper = {};
var IRRELEVANT_EXCLUDES = {'axisPointer': 1, 'tooltip': 1, 'brush': 1};
/**
* Avoid that: mouse click on a elements that is over geo or graph,
* but roam is triggered.
*/
helper.onIrrelevantElement = function (e, api, targetCoordSysModel) {
var model = api.getComponentByElement(e.topTarget);
// If model is axisModel, it works only if it is injected with coordinateSystem.
var coordSys = model && model.coordinateSystem;
return model
&& model !== targetCoordSysModel
&& !IRRELEVANT_EXCLUDES[model.mainType]
&& (coordSys && coordSys.model !== targetCoordSysModel);
};
module.exports = helper;