简体   繁体   中英

Oracle Apex - change chart label

I have a chart based on region classic report, with a column populated with number's associated to id's in a different table.

The chart shows the label like is inserted in the table(number), how can I show the representative name for the ID from the other table (text)?

在此处输入图片说明

图形/图表标签

In the chart attributes, you can nominate which column in the SQL represents the label shown in the report.

select count(*) cnt
 ,emp label
 ,deptno series
from emp
group by emp, deptno

在此处输入图片说明

This is the behaviour in Oracle JET charts from 5.1

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM