I have this problem, I need to paint each polygon with a distinct color based on an atribute value using .NET, for example:
Polygon value
1 10
2 10
3 5
4 5
5 1
Polygon 1 and 2 will be painted blue, polygon 3 and 4 will be green, and polygon 5 will be painted red
Does anyone knows how to do this? Thanks for the help.