ChartCommandsBase.ExportToXlsCommand Property
Specifies the command that invokes the Save As dialog to export the chart to an XLS file.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v24.1.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
Property Value
Type | Description |
---|---|
ICommand | An object that defines a command that implements the ICommand interface. |
Remarks
The code below invokes the Save As dialog when a user clicks the Export to XLS button:
<dxc:ChartControl x:Name="chart">
<!--...-->
</dxc:ChartControl>
<dx:SimpleButton VerticalAlignment="Bottom" Width="120" Height="20" Content="Export to XLS"
Command="{Binding Commands.ExportToXlsCommand, ElementName=chart}">
</dx:SimpleButton>
See Also