Hi,
I created a pie chart with below SQL
select 'LABEL1' LABEL,100 VALUE FROM DUAL
UNION
select 'LABEL2',100 FROM DUAL
UNION
select 'LABEL3',100 FROM DUAL
but the pie chart displays only the percentage in the pie, is there any way to show the value in the pie chart? eg. 33.3 % - 100
(I know the value can be shown in the tooltip when we point the mouse on the pie, but the user would like to see the value on the chart)

Thanks