您好,我正在使用SAPUI5的1.44.7版本,如何删除柱形图上的500m刻度?我已经为其刻度添加了最小最大值,但500m仍然存在。
屏幕截图: 500m on Y-axis
这是vizframe的属性。
oVizFrame.setVizProperties({
plotArea: {
dataLabel: {
/* formatString:CustomerFormat.FIORI_LABEL_SHORTFORMAT_2,*/
visible: false
}
},
yAxis: {
scale: {
fixedRange: true,
minValue: 0,
maxValue: 1.5
}
},
valueAxis: {
title: {
visible: false
}
},
categoryAxis: {
title: {
visible: false
}
},
title: {
visible: false,
text: 'Year'
}
});