Skip to main content
You are viewing help content for pre-release software. This document and the features it describes are subject to change.
All docs
V24.1

DxChartAnnotationBase<T>.Series Property

Specifies the series name to anchor the annotation.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

Declaration

[Parameter]
public string Series { get; set; }

Property Value

Type Description
String

The series name.

Remarks

The Chart component allows you to anchor the annotation to a series point. To enable this functionality, specify Series and Argument properties.

In DxPieChart, you can leave the Series property unspecified if your component contains a single series.

<DxChart Data="@DataSource">
    <DxChartLineSeries ValueField="@((ApplePrice i) => i.Close)"
                       ArgumentField="@((ApplePrice i) => i.Date)"
                       Name="AAPL" />
    <DxChartAnnotation Argument="new DateTime(2019, 9, 10)"
                       Series="AAPL"
                       Text="Watch Series 5">
    </DxChartAnnotation>
</DxChart>

Chart - Anchor the annotation to a series point

Refer to the DxChartAnnotationBase topic for more information about chart annotations.

See Also