Class ChartExportEventArgs
Specifies the event arguments available for Exporting event of the chart component.
Inheritance
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ChartExportEventArgs : BaseEventArgs
Properties
Height
Gets or sets the height of the chart to be exported.
Declaration
public double Height { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the height of the chart in pixels. |
Remarks
This property is used to specify or modify the height of the chart during the export process.
Width
Gets or sets the width of the chart to be exported.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the width of the chart in pixels. |
Remarks
This property is used to specify or modify the width of the chart during the export process.
Workbook
Gets or sets the workbook of the Excel document that contains the exported chart data.
Declaration
public Workbook Workbook { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.ExcelExport.Workbook | An instance of the |
Remarks
This property holds the workbook object for accessing and customizing the Excel sheet of the exported document. This property is applicable only for XLSX and CSV export types.