This commit adds the `grace` option, to the LinearScaleOptions type definition
as documented here,
https://www.chartjs.org/docs/latest/axes/cartesian/linear.html#grace. Without
this commit the TS compiler does not allow the option.
Signed-off-by: Moses Mendoza <mendoza.moses@gmail.com>
* Adjustment used when calculating the minimum data value.
*/
suggestedMax?: number;
+ /**
+ * Percentage (string ending with %) or amount (number) for added room in the scale range above and below data.
+ */
+ grace?: string | number;
ticks: {
/**