ICanvas.RotatedEllipse
ICanvas

procedure RotatedEllipse(Left, Top, Right, Bottom, Z: Integer; Angle: Double);

Type Library
TeeChartx

Description
Draws an ellipse with a rotation angle (from 0 to 360 degree)

Example [Visual Basic]:

Private Sub TChart1_OnAfterDraw()

Dim ptX As Variant, ptY As Variant

TChart1.Canvas.RotatedEllipse 50, 90, 250, 160, 10, HScroll1.Value

ptX = Array(300, 350, 380, 320, 290)

ptY = Array(200, 190, 210, 90, 180)

TChart1.Canvas.Polyline 5, ptX, ptY, 20

'TChart1.Canvas.Draw 0, 0, Picture1.Picture 'If active, this line draws an image

End Sub