From b72114f50319e55b9c7c67b3203b467a19d055d6 Mon Sep 17 00:00:00 2001 From: Greg Fulton Date: Fri, 22 Dec 2023 12:11:52 -0500 Subject: [PATCH] DataItem content can have HTML Element (like DataGroup) --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 77448d8387..8a81d5925c 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -86,7 +86,7 @@ export interface LegendOptions { export interface DataItem { className?: string; - content: string; + content: string | HTMLElement; end?: DateType; group?: any; id?: IdType;