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