ITChart.Draw
ITChart
procedure Draw(DC, Left, Top, Right, Bottom: Integer);
Type Library
TeeChartx
Description
Use the Draw method to paint the Chart in your preferred Canvas and region.
It can also be used to PrintChart the Chart in a customized way:
Example [Visual Basic]:
With TChart1
.Printer.BeginDoc
.Draw .Canvas.HandleDC, 0, 0, .Printer.PageWidth / 2, .Printer.PageHeight / 2
.Printer.EndDoc
End With