Alright I have a set of data that i want to apply two different styles to...

In one class i want to set the color and in an overlapping class i want to set the symbol... so i don't have to create Colors*Symbols number of classes. 

I.e. i want to list classes where expressions can overlap and fill in different parts of a style for a particular point

CLASS
    _expression_ ('[color]' eq 'red')
    STYLE
       COLOR 255 0 0
    END
END

CLASS
    _expression_ ('[symbol]' eq 'triangle')
    STYLE
       SYMBOL "triangle"
       SIZE 7
       WIDTH 1
    END
END

Reply via email to