* @desc Called before laying out `chart`. If any plugin returns `false`, * the layout update is cancelled until another `update` is triggered. * @param {Chart} chart - The chart instance. * @param {object} args - The call arguments. * @param {object} options - The plugin options. * @r
(chart: Chart<TType>, args: { cancelable: true }, options: O)
| 958 | * @returns {boolean} `false` to cancel the chart layout. |
| 959 | */ |
| 960 | beforeLayout?(chart: Chart<TType>, args: { cancelable: true }, options: O): boolean | void; |
| 961 | /** |
| 962 | * @desc Called before scale data limits are calculated. This hook is called separately for each scale in the chart. |
| 963 | * @param {Chart} chart - The chart instance. |
no outgoing calls
no test coverage detected