From f2cfb933b910581c42631293e1536ceb502eef7b Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Sat, 1 Jul 2023 08:51:53 -0400 Subject: [PATCH] fix: add pointStyleWidth to type definitions (#11383) --- src/types/index.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 9ce9c5e84..8875bc79c 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -2399,6 +2399,10 @@ export interface LegendOptions { * @default 10 */ padding: number; + /** + * If usePointStyle is true, the width of the point style used for the legend. + */ + pointStyleWidth: number; /** * Generates legend items for each thing in the legend. Default implementation returns the text + styling for the color box. See Legend Item for details. */ -- 2.47.3