You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/integration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Integration
2
2
3
-
**chartjs-plugin-zoom** can be integrated with plain JavaScript or with different module loaders. The examples below show to load the plugin in different systems.
3
+
**chartjs-plugin-zoom** can be integrated with plain JavaScript or with different module loaders. The examples below show how to load the plugin in different systems.
Copy file name to clipboardExpand all lines: docs/guide/options.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,8 +43,8 @@ const chart = new Chart('id', {
43
43
| Name | Arguments | Description
44
44
| ---- | --------- | -----------
45
45
| `onPan` | `{chart}` | Called while the chart is being panned
46
-
| `onPanComplete` | `{chart}` | Called once panning is copleted
47
-
| `onPanRejected` | `{chart,event}` | Callend when panning is rejected due to missing modifier key. `event` is the a [hammer event](https://hammerjs.github.io/api#event-object) that failed
46
+
| `onPanComplete` | `{chart}` | Called once panning is completed
47
+
| `onPanRejected` | `{chart,event}` | Called when panning is rejected due to missing modifier key. `event` is the a [hammer event](https://hammerjs.github.io/api#event-object) that failed
48
48
49
49
## Zoom
50
50
@@ -67,5 +67,5 @@ const chart = new Chart('id', {
67
67
| Name | Arguments | Description
68
68
| ---- | --------- | -----------
69
69
| `onZoom` | `{chart}` | Called while the chart is being zoomed
70
-
| `onZoomComplete` | `{chart}` | Called once zooming is copleted
71
-
| `onZoomRejected` | `{chart,event}` | Callend when zoom is rejected due to missing modifier key. `event` is the a [hammer event](https://hammerjs.github.io/api#event-object) that failed
70
+
| `onZoomComplete` | `{chart}` | Called once zooming is completed
71
+
| `onZoomRejected` | `{chart,event}` | Called when zoom is rejected due to missing modifier key. `event` is the a [hammer event](https://hammerjs.github.io/api#event-object) that failed
0 commit comments