Marks Angle
Posted: Fri Sep 17, 2004 12:40 pm
Hi,
Could somebody please helt me.
I'm using TeeChart 6 Delphi 7.
I would like to add a point to my chart with a label having an angle. Could you please teel me the property to set. I can see that in TeeChart 7 the TSeriesMarks obj has an Angle property, but this is not the case in TeeChart 6. Where can I set the angle ?
Small example:
var
PSeries: TPointSeries;
begin
PSeries:= TPointSeries.Create(nil);
PSeries.Marks.Style := smsLabel;
PSeries.Marks.Visible := True;
// ?? PSeries.Marks.Angle <- does not exist !
PSeries.AddXY(StrToFloat(eX.Text),StrToFloat(eY.Text),'ged') ;
Chart1.AddSeries(PSeries);
end;
Regards,
-Torben
Could somebody please helt me.
I'm using TeeChart 6 Delphi 7.
I would like to add a point to my chart with a label having an angle. Could you please teel me the property to set. I can see that in TeeChart 7 the TSeriesMarks obj has an Angle property, but this is not the case in TeeChart 6. Where can I set the angle ?
Small example:
var
PSeries: TPointSeries;
begin
PSeries:= TPointSeries.Create(nil);
PSeries.Marks.Style := smsLabel;
PSeries.Marks.Visible := True;
// ?? PSeries.Marks.Angle <- does not exist !
PSeries.AddXY(StrToFloat(eX.Text),StrToFloat(eY.Text),'ged') ;
Chart1.AddSeries(PSeries);
end;
Regards,
-Torben