 | CCSYMB3DSetSizeScale Method |
Set the symbol size based on a scale.
Namespace:
GeoEngine.Core.GXNetX
Assembly:
geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntaxpublic void SetSizeScale(
double scale,
int log_scaling,
double log_minimum
)
public void SetSizeScale(
double scale,
int log_scaling,
double log_minimum
)
Public Sub SetSizeScale (
scale As Double,
log_scaling As Integer,
log_minimum As Double
)
Public Sub SetSizeScale (
scale As Double,
log_scaling As Integer,
log_minimum As Double
)
public:
void SetSizeScale(
double scale,
int log_scaling,
double log_minimum
)
public:
void SetSizeScale(
double scale,
int log_scaling,
double log_minimum
)
member SetSizeScale :
scale : float *
log_scaling : int *
log_minimum : float -> unit
member SetSizeScale :
scale : float *
log_scaling : int *
log_minimum : float -> unit
Parameters
- scale
- Type: SystemDouble
Symbol scale (> 0.0) - log_scaling
- Type: SystemInt32
1 - Use log scaling, 0 - linear scaling - 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 scale factor to get the symbol size
(negative logs do not plot).
See Also