Skip to content

Commit fd8a34f

Browse files
committed
tree chart data added
1 parent 3c71c2c commit fd8a34f

File tree

1 file changed

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

1 file changed

+21
-0
lines changed

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

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,27 @@ export const enObj: I18nObjects = {
278278
{source: "Node 2", target: "Node 3", category: 1}
279279
]
280280
},
281+
defaultTreeChartOption: {
282+
data: [{
283+
name: "Parent",
284+
children: [
285+
{
286+
name: "Child 1",
287+
children: [
288+
{ name: "Child 1-1" },
289+
{ name: "Child 1-2" }
290+
]
291+
},
292+
{
293+
name: "Child 2",
294+
children: [
295+
{ name: "Child 2-1" },
296+
{ name: "Child 2-2" }
297+
]
298+
}
299+
]
300+
}]
301+
},
281302

282303
defaultMapJsonOption: defaultMapData,
283304
};

0 commit comments

Comments
 (0)