How to draw circle using TfrxShapeView

ccyccy
edited 4:35PM in FastReport 4.0
I try to draw a perfect circle with TfrxShapeView:
var o: TfrxShapeView;
begin
  ...
  o.Width := 5;
  o.Height := 5;
  o.Curve := 3;
  ...
end;

The circle isn't perfect if I adjust the width and height of TfrxShapeView. How to adjust curve value in order to draw a perfect circle?

Comments

  • gpigpi
    edited 4:35PM
    var o: TfrxShapeView;
    begin
    ...
    o.Width := 5;
    o.Height := 5;
    o.Curve := 0;
    ...
    end;

Leave a Comment