Skip to main content
A newer version of this page is available. .

BootstrapChartCommonSeriesBase.TagField Property

Specifies which data source field provides auxiliary data for series points.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v18.2.dll

Declaration

[DefaultValue("tag")]
public string TagField { get; set; }

Property Value

Type Default Description
String "tag"

A string specifying the name of a data source field.

Remarks

This property allows you to associate virtually any required data with a series point. This data will be stored in the tag field of the BootstrapChartPointSettings object.

Commonly, a chart contains several series, and many of them have the same TagField value. In this case, specify the TagField property in the BootstrapChartCommonSeries class. If a series must have a unique TagField value, specify the same property, but do so in the BootstrapChartSeries object within the BootstrapChartSeriesCollection array.

See Also