VizFrame柱形图的y轴刻度为500m

时间:2018-07-19 15:45:26

标签: javascript sapui5

您好,我正在使用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'
            }
        });

0 个答案:

没有答案