property Serie.Data as Variant
Specifies the values of the serie

TypeDescription
Variant A variant expression that defines the values of the serie as one of the following:
  • a string expression, that defines any of the following:
    • the list of values separated by comma/space, such as "1,2,3" (single-dimensional array) or "10 20,10 15" (bi-dimensional array)
    • the list of column-names or column-indexes separated by comma within the control's data, such as "AAPL (open),AAPL (high),AAPL (low),AAPL (close)" or "1,2,3,4". The Data, Import or DataSource property defines the control's data.
    • the list of categories(values) separated by comma, such as "Facebook(10 20 30),Google(15 15 40),Microsoft(20 20 50)"
  • a numeric expression, that defines any of the following:
    • the single value of the serie, such as 1000
    • the index of the column within the control's data, such as 1
  • a safe-array of values that indicates a single or bi-dimensional array, such as Array(100,200,300)
The Data property defines the values of the serie. The Data property is equivalent with Data parameter of the Add method. The Type property specifies the type of the serie (the way the data is represented). You can use the Def(exSerieData) property to define a default data set that will be automatically assigned to multiple newly created series. The "value" keyword retrieves the actual numeric value of a data point within the serie. When used in  ToolTipFormat or ValueFormat expressions, it displays the data point’s value directly on the chart or in tooltips, allowing you to show precise numeric information for each point in the serie.

The control can load data using one of the following methods:

The DataSample property gives a sample of the data being loaded.