Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3bd86d7

Browse files
committed
sunburst chart data added
1 parent 4feac07 commit 3bd86d7

File tree

1 file changed

+23
-0
lines changed
  • client/packages/lowcoder-comps/src/i18n/comps/locales

1 file changed

+23
-0
lines changed

‎client/packages/lowcoder-comps/src/i18n/comps/locales/enObj.tsx

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,29 @@ export const enObj: I18nObjects = {
310310
}
311311
]
312312
},
313+
defaultSunburstChartOption: {
314+
data: [
315+
{
316+
name: "Grandparent",
317+
children: [
318+
{
319+
name: "Parent A",
320+
children: [
321+
{name: "Child A1", value: 10},
322+
{name: "Child A2", value: 20}
323+
]
324+
},
325+
{
326+
name: "Parent B",
327+
children: [
328+
{name: "Child B1", value: 15},
329+
{name: "Child B2", value: 25}
330+
]
331+
}
332+
]
333+
}
334+
]
335+
},
313336

314337
defaultMapJsonOption: defaultMapData,
315338
};

0 commit comments

Comments
 (0)