I have region plugin(Flot Pie Chart) from package application.the value showing % as default.
how can remove it?
how to show the one value in centre place?
Development environment: apex.oracle.com
Theme: 42(universal)
select 'Internal' as label,
(select sum(INT\_QTY) from TABLE\_A) as value
from dual
union all
select 'External' as label,
(select sum(EXT\_QTY) from TABLE\_A) as value
from dual
union all
select 'Total' as label,
(select sum(A\_TOTAL) from TABLE\_A) as value
from dual
