 | CCSYMB3DSetSizeMinMax Method |
Scale the symbol size based on value. By default symbols are fixed size
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SetSizeMinMax(
double min_size,
double max_size,
int log_scaling,
double log_minimum
)
public void SetSizeMinMax(
double min_size,
double max_size,
int log_scaling,
double log_minimum
)
Public Sub SetSizeMinMax (
min_size As Double,
max_size As Double,
log_scaling As Integer,
log_minimum As Double
)
Public Sub SetSizeMinMax (
min_size As Double,
max_size As Double,
log_scaling As Integer,
log_minimum As Double
)
public:
void SetSizeMinMax(
double min_size,
double max_size,
int log_scaling,
double log_minimum
)
public:
void SetSizeMinMax(
double min_size,
double max_size,
int log_scaling,
double log_minimum
)
member SetSizeMinMax :
min_size : float *
max_size : float *
log_scaling : int *
log_minimum : float -> unit
member SetSizeMinMax :
min_size : float *
max_size : float *
log_scaling : int *
log_minimum : float -> unit
Parameters
- min_size
- Type: SystemDouble
If defined, make smallest symbol this size (>=0) - max_size
- Type: SystemDouble
If defined, make largest symbol this size - log_scaling
- Type: SystemInt32
If 1, use log scaling, 0 - linear between min and max - log_minimum
- Type: SystemDouble
divide by this value before taking the log (default = 1.0, must be > 0.0)
Remarks
Data for sizes must be added using the AddSizeData function.
For log scaling, take the log then apply the scaling method to get the symbol size
(negative logs do not plot).
See Also