Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add description on new dataset update and draw plugin hooks #4417

Merged
merged 1 commit into from Jun 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/developers/plugins.md
Expand Up @@ -106,7 +106,7 @@ var chart = new Chart(ctx, {

## Plugin Core API

Available hooks (as of version 2.5):
Available hooks (as of version 2.6):

* beforeInit
* afterInit
Expand All @@ -116,12 +116,16 @@ Available hooks (as of version 2.5):
* afterLayout
* beforeDatasetsUpdate *(cancellable)*
* afterDatasetsUpdate
* beforeDatasetUpdate *(cancellable)*
* afterDatasetUpdate
* beforeRender *(cancellable)*
* afterRender
* beforeDraw *(cancellable)*
* afterDraw
* beforeDatasetsDraw *(cancellable)*
* afterDatasetsDraw
* beforeDatasetDraw *(cancellable)*
* afterDatasetDraw
* beforeEvent *(cancellable)*
* afterEvent
* resize
Expand Down