Oracle APEX-自定义条形图

时间:2019-04-24 00:22:49

标签: oracle-apex

是否可以将条形图制作为双y轴?

我有一个由查询生成的带有4条柱形图的条形图,返回了4行。

我是否有办法使每个条形具有不同的颜色,并且在右侧而不是系列名称中为每个条形指定颜色以及标签?

1 个答案:

答案 0 :(得分:3)

点击图表系列之一,然后找到“分配给Y轴”属性

enter image description here

不是'Color'属性旁边的方式。您可以使用&COLUMN_ALIAS替换from your SQL的颜色,用您的值代替。语法。

链接表格中示例图表应用程序中的示例显示了颜色如何基于行(调整了列别名以匹配我的屏幕截图)

select a.product_name, 
       b.quantity, 
       b.customer,
       -- This is the column you're looking for
       case when b.quantity > 50 then 'gold'
            when b.quantity <= 30 then 'red' 
         when b.quantity > 30 then 'green'
         else 'blue'
       end as colour
from eba_demo_chart_products a, eba_demo_chart_orders b
where a.product_id = b.product_id
and customer = 'Store A'