我正在为我的SAP ui5应用程序之一使用水平项目符号图。 即使将数据标签的visible属性设置为true,数据标签也不会显示在图形上
dataLabel: {
formatString: formatNumberString,
visible: true,
showTotal: true,
unitFormatType:"FinancialUnits",
hideWhenOverlap:false,
style:{
fontSize:"11px",
fontWeight:"bold"
},
}
答案 0 :(得分:0)
请在onInit函数中尝试此操作。
var idChart = this.getView().byId("idChart");
idChart.setVizProperties({
plotArea: {
dataLabel: {
visible: true
}
}
});