Hi,
I have a problem with the negative values of the right axis : the sign is too near of the axis as you can see it on this picture : http://cjoint.com/?iepuB3CZw7
Do you have a solution for this probem ?
Thanks
Franck
Right axis
Hi Franck,
one trick could be to make much large the Ticks :
.. or another one could be to add extra spaces in the Axis Labels :
one trick could be to make much large the Ticks :
Code: Select all
Chart1.Axes.Right.TickLength:=20;
Chart1.Axes.Right.Ticks.Color := Form1.Color;
Code: Select all
procedure TForm1.Chart1GetAxisLabel(Sender: TChartAxis;
Series: TChartSeries; ValueIndex: Integer; var LabelText: String);
begin
if Sender = Chart1.Axes.Right then
Labeltext := ' ' + LabelText;
end;
Pep Jorge
http://support.steema.com
http://support.steema.com
Hi, Franck,
not, it's working fine here. Does the exception appears just creating a new app. with just one Series and this event with the same code ?
If so, could you please send me this app. directly to pep@steema.com and I'll take a look ?
not, it's working fine here. Does the exception appears just creating a new app. with just one Series and this event with the same code ?
If so, could you please send me this app. directly to pep@steema.com and I'll take a look ?
Pep Jorge
http://support.steema.com
http://support.steema.com
Hi Franck,
Difficult without being able to reproduce it here. If you can create a simple app. with which I can reproduce the problem send me it directly to pep@steema.com and I'll take a look.Any ideas ?
Pep Jorge
http://support.steema.com
http://support.steema.com