Skip to main content

ChoroplethColorizer.ApproximateColors Property

Gets or sets a value specifying whether to apply an approximation algorithm to colors in a colorizer.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v23.2.dll

NuGet Package: DevExpress.Win.Map

Declaration

[DefaultValue(false)]
public bool ApproximateColors { get; set; }

Property Value

Type Default Description
Boolean false

true if an approximation algorithm is applied to colors; otherwise, false.

Remarks

For more information, see Colorizers.

Example

private void cbApproximateColors_CheckedChanged(object sender, EventArgs e) {
    Colorizer.ApproximateColors = cbApproximateColors.Checked;
}
See Also