Hi,
I know I can set the way the values from each column are displayed using colStyle.
For example:
select 'dbr.colstyle', 'value', '%.1f [uom]';
This works fine for pies etc, and totals on bar charts. But this does not seem to work on data values for bar/stacked bar charts.
In those cases "%.1f" syntax works ok, but if I add a reference to another column (like [uom] above) or add a literal value, the total value is formatted correctly, but the data value formatting fails for this syntax and it reverts to no formatting at all.
Specifically I'm trying to put some text into each stacked bar in a stacked bar chart.
Example code:
select 'dbr.chart', 'StackedBar3D', '', 400,70;
select 'dbr.chart.options', 'hide', 'all';
select 'dbr.chart.options', 'showvalues', 1;
select 'dbr.colstyle', 'value', '%.1f [uom]';
SELECT tmp.series,
tmp.uom,
tmp.value
FROM tmp;
Thanks.