|
From: Vikram R. <vr...@st...> - 2003-04-16 20:31:30
|
I need to add a percentage sign next to all values on the Y Axis. For =
this I added the following bit of code:
AxisProperties axisProperties=3D new AxisProperties();
axisProperties.getYAxisProperties().setShowGridLines( =
AxisTypeProperties.GRID_LINES_ONLY_WITH_LABELS );
DataAxisProperties dataAxisProperties =3D =
(DataAxisProperties)axisProperties.getYAxisProperties();
dataAxisProperties.setUsePercentSigns(true);
But when I generate the chart using the JPEG encoder, the percentage =
signs are not rendered. It works (dollar signs are displayed) when I use =
the setUseDollarSigns() method.=20
Is this a bug, or am I missing something?
thanks,
Vikram |