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.v24.2.dll
Declaration
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