|
|
DataStore Property
Stores an array into the data buffer.
Syntax
FlpGrf.DataStore [ = value]
The DataStore property has these parts:
|
Part |
Description |
|
FlpGrf |
An object expression that evaluates the Flipper Graph ASP object. |
|
value |
A variant array specifying the data values. |
Remarks
This property stores the data to a data matrix that will be plotted on the graph. The number of available columns is set by DataInit, and the row number is dynamic. The first column is zero. The last column is DataInit - 1.
Example
FlpGrf1.DataInit = 2
FlpGrf1.GraphType = 0
' Store data into buffer a
row at a time
FlpGrf1.DataStore = Array("Jason",
87)
FlpGrf1.DataStore = Array("Mike", 59)
FlpGrf1.DataStore = Array("Calvin", 52)
FlpGrf1.DataStore = Array("Bob", 4)
FlpGrf1.DataStore = Array("Dan", 49)
' Assign columns to axes
FlpGrf1.Column = 0
FlpGrf1.ColumnAxis = 0
FlpGrf1.Column = 1
FlpGrf1.ColumnAxis = 1
' Assign how data for column
1 will be displayed
FlpGrf1.ColumnType = 1 '
Set column 1 to line
See Also
![]() |
Last modified on: Friday, August 16, 2002