New to Telerik UI for WinForms? Start a free 30-day trial
Data Binding RadChart to an Array
Updated over 6 months ago
To bind a RadChart to an Array object, assign the RadChart DataSource property to the array, then call the RadChart DataBind() method. The example below demonstrates data binding to an array of integers.

C#
int[] intArray = new int[4] { 10, 12, 13, 5 };
radChart1.DataSource = intArray;