TdxChart.ExportToXLSX(TStream,Integer,Integer) Method
Exports chart content as an image container in an XLSX document and saves it to the target stream.
Declaration
procedure ExportToXLSX(const AStream: TStream; AImageWidth: Integer = 0; AImageHeight: Integer = 0); overload;
Parameters
Name | Type | Description |
---|---|---|
AStream | TStream | The target stream. |
AImageWidth | Integer | Optional. The width (in pixels) of the chart image inserted into the resulting XLSX document saved to the target stream ( |
AImageHeight | Integer | Optional. The height (in pixels) of the chart image inserted into the resulting XLSX document saved to the target stream ( |
Remarks
Important
Do not call the ExportToXLSX
procedure in your code. To export Chart control content to a stream in XLSX format, call the control’s corresponding ExportToXLSX procedure instead.
See Also