Skip to content

Commit

Permalink
resolves #9316 (#9317)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeLenaleee committed Jun 25, 2021
1 parent 3bb0241 commit e4c7a73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/axes/index.md
Expand Up @@ -157,8 +157,8 @@ Namespace: `options.scales[scaleId]`
| `afterBuildTicks` | `axis` | Callback that runs after ticks are created. Useful for filtering ticks.
| `beforeTickToLabelConversion` | `axis` | Callback that runs before ticks are converted into strings.
| `afterTickToLabelConversion` | `axis` | Callback that runs after ticks are converted into strings.
| `beforeCalculateTickRotation` | `axis` | Callback that runs before tick rotation is determined.
| `afterCalculateTickRotation` | `axis` | Callback that runs after tick rotation is determined.
| `beforeCalculateLabelRotation` | `axis` | Callback that runs before tick rotation is determined.
| `afterCalculateLabelRotation` | `axis` | Callback that runs after tick rotation is determined.
| `beforeFit` | `axis` | Callback that runs before the scale fits to the canvas.
| `afterFit` | `axis` | Callback that runs after the scale fits to the canvas.
| `afterUpdate` | `axis` | Callback that runs at the end of the update process.
Expand Down
4 changes: 2 additions & 2 deletions types/index.esm.d.ts
Expand Up @@ -1137,11 +1137,11 @@ export interface CoreScaleOptions {
/**
* Callback that runs before tick rotation is determined.
*/
beforeCalculateTickRotation(axis: Scale): void;
beforeCalculateLabelRotation(axis: Scale): void;
/**
* Callback that runs after tick rotation is determined.
*/
afterCalculateTickRotation(axis: Scale): void;
afterCalculateLabelRotation(axis: Scale): void;
/**
* Callback that runs before the scale fits to the canvas.
*/
Expand Down

0 comments on commit e4c7a73

Please sign in to comment.