UNPKG

scichart

Version:

Fast WebGL JavaScript Charting Library and Framework

29 lines (28 loc) 728 B
/** * Defines constants for when a {@link ChartModifierBase | Chart Modifier} operation occurs * See https://developer.mozilla.org/en-US/docs/Web/API/MouseEvent/button#value for more information * * Default `EExecuteOn.MouseLeftButton` - same as `EExecuteOn[0]` */ export declare enum EExecuteOn { /** * Execute on MouseRightButton */ MouseLeftButton = 0, /** * Execute on MouseRightButton */ MouseMiddleButton = 1, /** * Execute on MouseRightButton */ MouseRightButton = 2, /** * Execute on BrowserBackButton */ BrowserBackButton = 3, /** * Execute on MouseDoubleClick */ BrowserForwardButton = 4 }