https://github.com/zingchart/zingchart-constants
A repository containing the names of methods, events, and other misc constants of ZingChart
https://github.com/zingchart/zingchart-constants
Last synced: 6 months ago
JSON representation
A repository containing the names of methods, events, and other misc constants of ZingChart
- Host: GitHub
- URL: https://github.com/zingchart/zingchart-constants
- Owner: zingchart
- Created: 2019-11-12T22:52:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-21T16:26:30.000Z (over 2 years ago)
- Last Synced: 2024-12-27T21:14:29.845Z (over 1 year ago)
- Language: JavaScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# zingchart-constants
Just a repo with all of the method, event, and misc constants for ZingChart. Used for wrappers and integrations.
## Export Object
The default export object contains the following:
```
export default {
EVENT_NAMES,
METHOD_NAMES,
MARKER_NAMES,
DEFAULT_WIDTH,
DEFAULT_HEIGHT,
DEFAULT_OUTPUT,
};
```
### EVENT_NAMES
A list of all event names available on ZingChart.
### METHOD_NAMES
A list of all method names available on ZingChart.
### MARKER_NAMES
A list of all marker types available on ZingChart. The term marker is synonmous with node, so these are the different node style render types.
### DEFAULT_WIDTH
The default width of the charts.
### DEFAULT_HEIGHT
The default width of the charts.
### DEFAULT_OUTPUT
The default output of render of the charts. Can either be `svg` or `canvas`.