FillVisible Property
Syntax
CWShape.FillVisible
Data Type
Purpose
Specifies if the shape is filled with the value specified by the CWShape.Color property.
Remarks
By default, the FillVisible property is set to False, which displays only an outline of the shape.
Example
'Highlight in blue all the values that are below 5 on the y axis.
CWGraph1.Annotations.Item(1).Shape.Type = cwShapeMinMaxRegion
CWGraph1.Annotations.Item(1).Shape.RegionArea = cwRegionInverted
CWGraph1.Annotations.Item(1).Shape.XCoordinates = Array()
CWGraph1.Annotations.Item(1).Shape.YCoordinates = Array(5)
CWGraph1.Annotations.Item(1).Shape.FillVisible = True
CWGraph1.Annotations.Item(1).Shape.Color = vbBlue