Skip to content

Commit 5d7138a

Browse files
committed
new data added
1 parent 359de59 commit 5d7138a

File tree

1 file changed

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

1 file changed

+29
-0
lines changed

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

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,35 @@ export const enObj: I18nObjects = {
162162
{ value: 20, name: "Buy" ,color:'#3ba272'},
163163
],
164164
},
165+
defaultFunnelChartOption: {
166+
data: [
167+
{ value: 100, name: "Show",color:'#fc8452' },
168+
{ value: 80, name: "Click" ,color:'#9a60b4'},
169+
{ value: 60, name: "Visit" ,color:'#fac858'},
170+
{ value: 40, name: "Query" ,color:'#ee6666'},
171+
{ value: 20, name: "Buy" ,color:'#3ba272'},
172+
],
173+
},
174+
defaultGaugeChartOption: {
175+
data: [
176+
{ value: 60, name: "Completed",color:'#fc8452' }
177+
]
178+
},
179+
defaultSankeyChartOption: {
180+
data: [
181+
{name: "Show"},
182+
{name: "Click"},
183+
{name: "Visit"},
184+
{name: "Query"},
185+
{name: "Buy"}
186+
],
187+
links: [
188+
{source: "Show", target: "Click", value: 80},
189+
{source: "Click", target: "Visit", value: 60},
190+
{source: "Visit", target: "Query", value: 40},
191+
{source: "Query", target: "Buy", value: 20}
192+
]
193+
},
165194

166195
defaultMapJsonOption: defaultMapData,
167196
};

0 commit comments

Comments
 (0)