Skip to main content
A newer version of this page is available. .

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.v21.2.dll

NuGet Packages: DevExpress.Win.Design, 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

View Example

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