From 0e64e53a59df1e0ba8ab6bd429334badb0a2afbc Mon Sep 17 00:00:00 2001 From: David Sandoz Date: Wed, 8 Sep 2021 13:26:43 +0200 Subject: [PATCH] Add align to interface of scale title config (#9634) --- types/index.esm.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.esm.d.ts b/types/index.esm.d.ts index 5ea417ea3..19a7009fb 100644 --- a/types/index.esm.d.ts +++ b/types/index.esm.d.ts @@ -2905,6 +2905,7 @@ export interface CartesianScaleOptions extends CoreScaleOptions { title: { display: boolean; + align: 'start' | 'center' | 'end'; text: string | string[]; color: Color; font: FontSpec;