Skip to main content
All docs
V25.1
  • DxPolarChartArgumentAxis.LinearThreshold Property

    Specifies a linear threshold for a logarithmic axis when its scale includes non-positive values.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [Parameter]
    public int LinearThreshold { get; set; }

    Property Value

    Type Description
    Int32

    The threshold value.

    Remarks

    Set an axis Type property to Logarithmic to display logarithmic values using a base of 10. If you need to display data with another base, assign an integer value to the LogarithmBase property. To reduce the number of small axis values rendered, specify the LinearThreshold property.

    The following example sets LinearThreshold to 4:

    <DxPolarChart Data="@GetData()">
        <DxChartLegend Visible="false" />
        <DxPolarChartArgumentAxis Type="ChartAxisType.Logarithmic" 
                                  LogarithmBase="3"
                                  LinearThreshold="4" />
        <DxPolarChartLineSeries ArgumentField="@((DataPoint s) => s.Value)" ValueField="@((DataPoint s) => s.Argument)" />
    </DxPolarChart>
    
    See Also