SymFrequency Property
SymFrequency returns or sets the symbol frequency. Returns an integer.
It is used to control how often data points are posted. A frequency of 1 posts every point. A frequency of 2 posts every other point, etc. This is often used to thin the number of displayed data points to avoid overwriting each other.
Syntax
object.SymFrequency
object. SymFrequency = Freq
Parameter |
Type |
Description |
Freq |
Integer |
required |
Example 1
This example demonstrates how to return the symbol frequency of a classed post map.
Debug.Print ClassedPostLayer.SymFrequency
Example 2
This example demonstrates how to set the symbol frequency to display symbols for every data value.
ClassedPostLayer.SymFrequency = 1
Used by: ClassedPostLayer Object, PostLayer Object