File tree Expand file tree Collapse file tree 1 file changed +11
-2
lines changed
client/packages/lowcoder-comps/src/comps/funnelChartComp Expand file tree Collapse file tree 1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,19 @@ export function funnelChartPropertyView(
31
31
</ div >
32
32
) ,
33
33
} ) }
34
- { children . echartsLegendConfig . getPropertyView ( ) }
35
- { children . echartsLabelConfig . getPropertyView ( ) }
34
+ { children . legendVisibility . getView ( ) && children . echartsLegendConfig . getPropertyView ( ) }
35
+ { children . label . getView ( ) && children . echartsLabelConfig . getPropertyView ( ) }
36
+ { children . echartsTitleConfig . getPropertyView ( ) }
37
+ { children . left . propertyView ( { label : trans ( "funnelChart.left" ) } ) }
38
+ { children . top . propertyView ( { label : trans ( "funnelChart.top" ) } ) }
39
+ { children . bottom . propertyView ( { label : trans ( "funnelChart.bottom" ) } ) }
40
+ { children . width . propertyView ( { label : trans ( "funnelChart.width" ) } ) }
41
+ { children . min . propertyView ( { label : trans ( "funnelChart.min" ) } ) }
42
+ { children . max . propertyView ( { label : trans ( "funnelChart.max" ) } ) }
43
+ { children . gap . propertyView ( { label : trans ( "funnelChart.gap" ) } ) }
36
44
{ children . echartsTitle . propertyView ( { label : trans ( "funnelChart.title" ) } ) }
37
45
{ children . tooltip . propertyView ( { label : trans ( "funnelChart.tooltip" ) } ) }
46
+ { children . label . propertyView ( { label : trans ( "funnelChart.label" ) } ) }
38
47
{ children . legendVisibility . propertyView ( { label : trans ( "funnelChart.legendVisibility" ) } ) }
39
48
</ Section >
40
49
< Section name = { sectionNames . interaction } >
You can’t perform that action at this time.
0 commit comments