| |
Data as 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 parameter is equivalent with Data property.
| |