Click or drag to resize

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
Syntax
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
)

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