ChDropZone Object
This content is no longer actively maintained. It is provided as is, for anyone who may still be using these technologies, with no warranties or claims of accuracy with regard to the most recent product version or service release.
ChartSpace ChDropZone |
Represents a drop zone on charts that are bound to a relational data source.
Using the ChDropZone object
The ChartSpace object's DropZones method returns a ChDropZone object.
The following example formats the button and the watermark of the series drop zone in Chartspace1.
`
Sub Setup_DropZone()`Dim dzSeriesDropZone Dim ChConstants Set chConstants = Chartspace1.Constants ' Set a variable to the series drop zone in Chartspace1. Set dzSeriesDropZone = ChartSpace1.DropZones(chConstants.chDropZoneSeries) ' The next three lines of code format the button of the drop zone. dzSeriesDropZone.ButtonBorder.Weight = chConstants.owcLineWeightMedium dzSeriesDropZone.ButtonInterior.SetSolid "Red" dzSeriesDropZone.ButtonFont.Size = 14 ' The next three lines of code format the watermark of the drop zone. dzSeriesDropZone.WatermarkBorder.Color = "Red" dzSeriesDropZone.WatermarkFont.Color = "Red" dzSeriesDropZone.WatermarkInterior.SetSolid "Green"
End Sub