属性的实现:plotArea.window.start和end为VizFrame条形图

时间:2017-01-20 15:20:24

标签: sapui5

E.g。我想在VizFrame中显示数据的结尾(必须在onAfterRendering事件之前完成):

enter image description here

我有工作示例here

oVizFrame.getVizProperties().plotArea.window.start = {feedAxisLabels: {'Country': 'Finland'}};
oVizFrame.getVizProperties().plotArea.window.end = {feedAxisLabels: {'Country': 'Poland'}};

但我仍然在图表的顶部:

enter image description here

请问,是否可以使用Vizframe plotArea.window.start和plotArea.window.end的属性来执行此操作?根据这个manual它应该是可能的,但只有水平的例子(所以我不确定,如果它也垂直工作)。 Here是折线图(水平)的示例,但我需要这个用于条形图(垂直)。

我会很高兴任何建议。

1 个答案:

答案 0 :(得分:0)

您需要将feedAxisLabels更改为categoryAxis,因此它看起来像......

oVizFrame.getVizProperties().plotArea.window.start = {categoryAxis: {'Country': 'Finland'}};
oVizFrame.getVizProperties().plotArea.window.end = {categoryAxis: {'Country': 'Poland'}};

分叉了你的傻瓜并制作了change here