Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/koorosh/dom-events
Highcharts event handlers mapped to DOM Events
https://github.com/koorosh/dom-events
Last synced: 20 days ago
JSON representation
Highcharts event handlers mapped to DOM Events
- Host: GitHub
- URL: https://github.com/koorosh/dom-events
- Owner: koorosh
- License: mit
- Created: 2016-02-18T16:04:21.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-02-15T07:28:04.000Z (almost 8 years ago)
- Last Synced: 2024-10-27T17:37:27.174Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 4
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dom-events
Binds Dom Events to actions on Highcharts elements.
### Usage
Add event handler as any other event handler in Highcharts:
```javascript
events: {
contextmenu: function(e) {
...
}
}
```### Supported events per element
Events | Plot Area | Series | Point
------------ | --------- | ------ | -----
dblclick | - | - | -
mousedown | - | - | -
mouseup | - | - | -
mousemove | - | - | -
mouseout | - | - | -
mouseenter | - | - | -
mouseleave | - | - | -
wheel | + | - | -
contextmenu | + | + | +