Skip to main content

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.v23.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

public ICommand ExportToXlsCommand { get; set; }

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