Oracle APEX:具有多个系列的条形图

时间:2017-10-10 14:27:24

标签: oracle oracle11g bar-chart oracle-apex

我在Oracle Apex中遇到条形图(有多个系列)的问题。例如,我用emp表创建了两个系列(4月,12月)的简单条形图。

enter image description here

系列的来源是SQL查询。

四月:

select job, count(job) as "Number of employees" from emp where to_char(HIREDATE, 'MON') = 'APR' GROUP BY job

12月:

select job, count(job) as "Number of employees" from emp where to_char(HIREDATE, 'MON') = 'DEC' GROUP BY job

问题是生成的图表不正确:

enter image description here

对于职员来说,图表中没有值,但必须有两个emp。十二月 这是来自sql developer的提到的查询的输出:

四月:

enter image description here

12月:

enter image description here

当我只使用一个系列时没有问题,问题只有多个系列。我将Apex 5.1与Oracle 12c一起使用。

1 个答案:

答案 0 :(得分:1)

我会回答我的问题。它是在顶点版本5.1.3中修复的错误。