DxPolarChartArgumentAxis.FirstPointOnStartAngle Property
In This Article
Specifies whether to align the value axis with a grid line of the argument axis.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.dll
NuGet Package: DevExpress.Blazor
#Declaration
C#
[Parameter]
public bool FirstPointOnStartAngle { get; set; }
#Property Value
Type | Description |
---|---|
Boolean |
|
#Remarks
The default value axis does not align with a grid line of the argument axis. However, you may want to use the value axis as one of the grid lines of the argument axis to reduce visual noise.
The following sample activates the alignment functionality:
Razor
<DxPolarChart Data="@DataSource[SelectedPeriod]" Width="100%" Height="500">
<DxPolarChartArgumentAxis DiscreteDivisionMode="ChartDiscreteAxisDivisionMode.CrossLabels"
FirstPointOnStartAngle="true" />
@foreach(var series in SeriesSource) {
<DxPolarChartStackedBarSeries Name="@series.Name" ArgumentField="@((WindRosePoint i) => i.Arg)" ValueField="@series.ValueField"/>
}
</DxPolarChart>
See Also