Hi,
I'm trying to provide a more descriptive label for a bar chart using ChartDirector parameter substitution. I have a query that returns
select label, value AS 'p[percent]', field1 AS 'F1[field1], field2 AS 'F2[field2] from table;
which displays fine in the barchart, but when I try and include field1 and field2 in the bar chart label I can't get it to work. I am using
select 'dbr.colstyle', 'percent', '{label}: {value|0}% ({dsField0|0} of {value|0})';
(and various other combinations) it displays the percentage fine, but not the extra field values.
to try and get a label like x% (y of z)
Is what I am trying possible in MyDBR's ChartDirector implementation and if so, how?
Duane