如何在sap ui5中为子弹图启用数据标签?

问题描述 投票:0回答:1

我正在为我的一个uap5应用程序使用水平子弹图。即使将数据标签visible属性设置为true,数据标签也不会显示在图表上

dataLabel: {
             formatString: formatNumberString,
             visible: true,
             showTotal: true,
             unitFormatType:"FinancialUnits",
             hideWhenOverlap:false,
             style:{
               fontSize:"11px",
               fontWeight:"bold"
             },
}
sapui5
1个回答
0
投票

请在onInit函数中尝试此操作。

var idChart = this.getView().byId("idChart");
            idChart.setVizProperties({
                plotArea: {
                    dataLabel: {
                        visible: true
                    }
                }
            });
© www.soinside.com 2019 - 2024. All rights reserved.