File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
client/packages/lowcoder-comps/src/comps/chartComp Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,20 @@ const chartModeOptions = [
62
62
} ,
63
63
] as const ;
64
64
65
+ const mapModeOptions = [
66
+ {
67
+ label : "Map" ,
68
+ value : "map" ,
69
+ } ,
70
+ ] as const ;
71
+
72
+ const eChartModeOptions = [
73
+ {
74
+ label : "ECharts JSON" ,
75
+ value : "json" ,
76
+ } ,
77
+ ] as const ;
78
+
65
79
export const UIEventOptions = [
66
80
{
67
81
label : trans ( "chart.select" ) ,
@@ -285,7 +299,6 @@ export type NonUIChartDataType = {
285
299
}
286
300
287
301
export const chartChildrenMap = {
288
- mode : dropdownControl ( chartModeOptions , "ui" ) ,
289
302
selectedPoints : stateComp < Array < UIChartDataType > > ( [ ] ) ,
290
303
lastInteractionData : stateComp < Array < UIChartDataType > | NonUIChartDataType > ( { } ) ,
291
304
onEvent : eventHandlerControl ( [ clickEvent ] as const ) ,
You can’t perform that action at this time.
0 commit comments