Skip to main content
A newer version of this page is available. .

ChartCommands.DrawFibonacciArcsIndicatorCommand Property

Specifies the command that activates the mode of drawing the Fibonacci Arcs indicator.

Namespace: DevExpress.Xpf.Charts

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

NuGet Package: DevExpress.Wpf.Charts

Declaration

public ICommand DrawFibonacciArcsIndicatorCommand { get; set; }

Property Value

Type Description
ICommand

An object that defines a command that implements the ICommand interface.

Remarks

The following code activates the Fibonacci Arcs indicator’s drawing mode when a user clicks the Draw Fibonacci Arcs button:

<dxc:ChartControl x:Name="chart">
    <!--...-->
</dxc:ChartControl>
<dx:SimpleButton VerticalAlignment="Bottom" Width="150" Height="40" Content="Draw Fibonacci Arcs" 
                 Command="{Binding Commands.DrawFibonacciArcsIndicatorCommand, ElementName=chart}">
</dx:SimpleButton>
See Also