如何在图表#oracle Apex #Chart

时间:2018-03-07 09:34:16

标签: oracle oracle-apex anychart

我需要在bar的末尾显示bar的值,如下面的imgae所示: Chart Image which is showing bar value at the end enter image description here

可能由Custom XMl完成,但我们需要在哪个属性中修改? 任何帮助表示赞赏。提前谢谢。

4 个答案:

答案 0 :(得分:0)

在Apex 5.1.1上,你应该

  • 导航至系列
  • 转到标签属性
  • 设置"显示=是"
  • 设置"位置=栏外边缘"

结果与您描述的结果类似。

您没有指定您使用的Apex版本。 "自定义XML" 听起来像 4.x.如果是这样,抱歉 - 不再拥有它并且无法测试它。

答案 1 :(得分:0)

默认设置是显示值。确保"值"选项在图表属性中检查(下图)。 enter image description here 示例:https://apex.oracle.com/pls/apex/f?p=145797:10

如果您需要编辑图形xml,可以使用以下文档:http://6.anychart.com/products/anychart/docs/users-guide/index.html

转到:标签和收件夹>>>数据标签格式

答案 2 :(得分:0)

(APEX 5.1) Or if you are using stacked bar chart use the following javascript to add total to bar:

Chart -> attributes -> JavaScript Initialization Code:

function( options ){

// Set the stackLabel attribute, to display the stack total above the given stack category
options.stackLabel = "on";
return options;      

}

答案 3 :(得分:0)

选择系列,然后搜索“标签”,将“显示设置”设置为“是”,“位置”设置为“条形外边缘”