Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 | + | + | +