From 70140d024b687a077970bdb17c04181c98c202f5 Mon Sep 17 00:00:00 2001 From: Evert Timberg Date: Fri, 30 Jun 2023 19:43:05 -0400 Subject: [PATCH] fix: add pointStyleWidth to type definitions --- 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 9ce9c5e842f..8875bc79cc3 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. */