New to Telerik ReportingStart a free 30-day trial

Acquires and manipulates data from databases or other sources. Populates the SeriesCollection of the chart control.

Definition

Namespace:Telerik.Reporting.Charting

Assembly:Telerik.Reporting.dll

Syntax:

C#
public sealed class DataManager

Inheritance: objectDataManager

Properties

Gets or sets the name of the list of data that the data-bound control binds to, in cases where the data source contains more than one distinct list of data items.

C#
public string DataMember { get; set; }

Chart Data Source object

C#
public object DataSource { get; set; }

Returns true if DataBind method has been called

C#
public bool IsDataBindCalled { get; set; }

The data source column used as chart labels source

C#
public string LabelsColumn { get; set; }

Enables or disables the series grouping feature

C#
public bool UseSeriesGrouping { get; set; }
Remarks:

Default value is True

The data source column used as series items X coordinate

C#
public string ValuesXColumn { get; set; }

The data source columns array used as series items Y coordinate source

C#
public string[] ValuesYColumns { get; set; }
Remarks:

This array could be used to set the Gantt chart data source columns. The columns should be added in the following order: X, Y, X2, Y2

Methods

Clears the Data Source used

C#
public void ClearDataSource()

Copies settings from another data manager

C#
public void CopyFrom(DataManager manager)
Parameters:managerDataManager

Source DataManager to copy settings from

Forces the data to be refreshed

C#
public void DataBind()

Events

Event raised after the each series item's data binding

C#
public event EventHandler<ChartItemDataBoundEventArgs> ItemDataBound