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

DxChartSeries.MaxLabelCount Property

Specifies the maximum number of point labels that the DxChartSeries displays.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public int MaxLabelCount { get; set; }

#Property Value

Type Description
Int32

The number of series labels.

#Remarks

If the number of labels exceeds the MaxLabelCount value, the series hides all labels. Use this property to avoid cluttered chart display.

The following example hides all series labels when their number exceeds a spin editor’s value:

razor
<div style="display:flex; width:100%; align-items:center;">
    <label style="padding-right:5px;">Limit the number of series labels:</label>
    <DxSpinEdit @bind-Value="@LimitLabelCount" />
</div>

<DxChart Data="@WeatherForecasts"
         Width="100%">
    <DxChartTitle Text="Annual Weather in New York" />
    <DxChartLineSeries SummaryMethod="@(i => i.Average())"
                       ValueField="@((DetailedWeatherSummary i) => i.AverageTemperatureF)"
                       ArgumentField="@(i => new DateTime(2000, i.Date.Month, 1))"
                       Name="Temperature, F"
                       Filter="@((DetailedWeatherSummary  i) => i.City == "NEW YORK")"
                       MaxLabelCount=@LimitLabelCount>
        <DxChartSeriesLabel Visible="true"
                            Position="RelativePosition.Outside"
                            FormatPattern="{argument:MMMM}: {value:#.##} °F">
            <DxChartSeriesLabelConnector Visible="true"
                                         Width="3" />
        </DxChartSeriesLabel>
    </DxChartLineSeries>
    <DxChartLegend Visible="false" />
    <DxChartValueAxis>
        <DxChartAxisTitle Text="Temperature, °F" />
    </DxChartValueAxis>
    <DxChartArgumentAxis>
        <DxChartAxisLabel Format="ChartElementFormat.Month" />
    </DxChartArgumentAxis>
</DxChart>

@code {
    IEnumerable<DetailedWeatherSummary> WeatherForecasts;

    protected override async Task OnInitializedAsync() {
        WeatherForecasts = await WeatherSummaryDataProvider.GetDataAsync();
    }

    int LimitLabelCount { get; set; } = 15;
}

See Also