Back to Devexpress

Chart3DControl.Commands Property

wpf-devexpress-dot-xpf-dot-charts-dot-chart3dcontrol-0a64c927.md

latest1.5 KB
Original Source

Chart3DControl.Commands Property

Provides access to the Chart3DControl‘s commands.

Namespace : DevExpress.Xpf.Charts

Assembly : DevExpress.Xpf.Charts.v25.2.dll

NuGet Package : DevExpress.Wpf.Charts

Declaration

csharp
[Browsable(false)]
public Chart3DCommands Commands { get; set; }
vb
<Browsable(False)>
Public Property Commands As Chart3DCommands

Property Value

TypeDescription
Chart3DCommands

A set of chart commands.

|

Remarks

The code below invokes the Print Preview dialog when a user clicks the Print Chart button:

xaml
<dxc:Chart3DControl x:Name="chart">
    <!--...-->
</dxc:Chart3DControl>
<dx:SimpleButton Width="100" Height="20" VerticalAlignment="Bottom" Content="Print Chart" 
                  Command="{Binding Commands.PrintPreviewCommand, ElementName=chart}"/>

See Also

Chart3DControl Class

Chart3DControl Members

DevExpress.Xpf.Charts Namespace