Skip to content

Commit b96deeb

Browse files
committed
funnel chart property view updated
1 parent 5ac3aa4 commit b96deeb

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

client/packages/lowcoder-comps/src/comps/funnelChartComp/funnelChartPropertyView.tsx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,19 @@ export function funnelChartPropertyView(
3131
</div>
3232
),
3333
})}
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") })}
3644
{children.echartsTitle.propertyView({ label: trans("funnelChart.title") })}
3745
{children.tooltip.propertyView({label: trans("funnelChart.tooltip")})}
46+
{children.label.propertyView({label: trans("funnelChart.label")})}
3847
{children.legendVisibility.propertyView({label: trans("funnelChart.legendVisibility")})}
3948
</Section>
4049
<Section name={sectionNames.interaction}>

0 commit comments

Comments
 (0)