Skip to main content

SeriesPoint.Tag Property

Gets or sets the object that contains data related to this series point.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v23.2.dll

NuGet Package: DevExpress.Wpf.Charts

Declaration

public object Tag { get; set; }

Property Value

Type Description
Object

An Object that contains data about the series point.

Remarks

Any type derived from the Object class can be assigned to this property. Use it to store data associated with a particular series point.

Note

If a chart is bound to data, the Tag property is automatically assigned to the underlying object used to create this series point (e.g. to the corresponding DataRowView object, if a chart is bound to a DataTable).

See Also