I have a vertical bar chart using the following query:
SELECT NULL link, ename label, sal value FROM emp
It renders with no problem. If I have a query for which all the "values" are zero like:
SELECT NULL link, ename label, 0 value FROM emp
the chart is blank.
Why does this not render a chart where all the values are zero with all the appropriate values?
Mike