Value Property
From 3D Graph Control
Value Property
Syntax
CWValuePair.Value
Data Type
Purpose
Specifies the value of the value pair.
Remarks
For example, you can use the Value property to set the value on a numeric axis to 212. You can then add a text label, such as "Boiling Point" at the set value.
Example
'Create a value pair
CWGraph3D1.Axes.Item(1).ValuePairs.Item(1).Add
'Set the name to "Boiling Point" and the value to 212
CWGraph3D1.Axes.Item(1).ValuePairs.Item(1).Name = "Boiling Point"
CWGraph3D1.Axes.Item(1).ValuePairs.Item(1).Value = "212"