Skip to main content
All docs
V25.1
  • ChartCommands.DrawFibonacciRetracementIndicatorCommand Property

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

    Namespace: DevExpress.Xpf.Charts

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

    NuGet Package: DevExpress.Wpf.Charts

    Declaration

    public ICommand DrawFibonacciRetracementIndicatorCommand { 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 Indicator indicator’s drawing mode when a user clicks the Draw Fibonacci Retracement button:

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