Skip to main content
All docs
V25.1
  • DxTooltipSettings.ArrowLength Property

    Specifies the tooltip arrow length.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(10)]
    [Parameter]
    public int ArrowLength { get; set; }

    Property Value

    Type Default Description
    Int32 10

    The tooltip arrow length in pixels.

    Remarks

    The following code snippet changes the length of the tooltip arrow in the DxBarGauge component:

    <DxBarGauge Width="50%"
                Height="50%"
                StartValue="-5"
                EndValue="5"
                BaseValue="0"
                Values="@Values">
        @* ... *@
        <DxTooltipSettings Enabled="true"
                           Color="lightyellow" 
                           ArrowLength="5">
            <DxTextFormatSettings LdmlString="@LabelFormat" />
        </DxTooltipSettings>
    </DxBarGauge>
    
    @code {
        string LabelFormat = "##.## mm;-##.## mm";
        double[] Values = new double[] { -2.13, 1.48, -3.09, 4.52, 4.9, 3.9 };
    }
    
    See Also