How to draw circle using TfrxShapeView

ccyccy
edited 7:45PM 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 7:45PM
    var o: TfrxShapeView;
    begin
    ...
    o.Width := 5;
    o.Height := 5;
    o.Curve := 0;
    ...
    end;

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.