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

GraphColorizer Class

Represents the Graph colorizer that tries to paint shapes that have a common border using different colors.

Namespace: DevExpress.UI.Xaml.Map

Assembly: DevExpress.UI.Xaml.Map.v18.2.dll

Declaration

public class GraphColorizer :
    MapColorizer

Example

To create a political map, it is necessary to use the GraphColorizer class. Perform the following steps to create the map.

<Map:MapControl.Colorizer>
    <Map:GraphColorizer>
        <Map:GraphColorizer.Colors>
            <Color>#5b9bd5</Color>
            <Color>#ed7d31</Color>
            <Color>#a5a5a5</Color>
            <Color>#ffc000</Color>
            <Color>#4472c4</Color>
            <Color>#70ad47</Color>
        </Map:GraphColorizer.Colors>
    </Map:GraphColorizer>
</Map:MapControl.Colorizer>

Inheritance

Object
Windows.UI.Xaml.DependencyObject
See Also