Fábio Martins
Fábio Martins

Reputation: 11

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)?

enter image description here

Graphic/ Chart labels

Upvotes: 1

Views: 1591

Answers (1)

Scott
Scott

Reputation: 5035

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

enter image description here

This is the behaviour in Oracle JET charts from 5.1

Upvotes: 2

Related Questions