Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxPolarChartArgumentAxis.LinearThreshold Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[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:

Razor
<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