Graph with series differentiate by colors and symbols
Graph with series differentiate by colors and symbols
Hello,
I don't find the code needed for differentiate series with symbol and in the same time with color on a same graph. The style symbols give the same output.
Thank You.
I don't find the code needed for differentiate series with symbol and in the same time with color on a same graph. The style symbols give the same output.
Thank You.
Re: Graph with series differentiate by colors and symbols
If you want series to have both different colors and different symbols, you can use the Graph Style Sheet feature. This allows you to create your own style definitions, saved in a text file, which you read in using OPEN and GRPARM(IMPORT=...) instructions.
If you have version 8 or 9, see the Introduction (Section 3.16 in particular) for details.
Regards,
Tom Maycock
Estima
If you have version 8 or 9, see the Introduction (Section 3.16 in particular) for details.
Regards,
Tom Maycock
Estima
Re: Graph with series differentiate by colors and symbols
Might someone post the 6-digit hex codes for the line default line colors? I did not see these in the manual. These appear to be needed when using graph style sheets to add symbols to colored lines.
Thanks
Thanks
Re: Graph with series differentiate by colors and symbols
These are the colors of the first nine:
- RGB_BLACK 000000
- RGB_BLUE 0000FF
- RGB_GREEN 00FF00
- RGB_RED FF0000
- RGB_CYAN 00FFFF
- RGB_MAGENTA FF00FF
- RGB_YELLOW FFFF
- RGB_ORANGE FF8000
- RGB_BROWN 804000
Re: Graph with series differentiate by colors and symbols
Dear Tom:
I have four series and want to graph with series differentiate symbols and same balck.
how can I do without using Graph Style Sheets.
Maybe style can be coded directly. these style acts as parameteras.
graph()
# x / pattern,color,gray,thickness,filled,symbol
graph()
# x / 1,0,,0,6,0
Hardmann
I have four series and want to graph with series differentiate symbols and same balck.
how can I do without using Graph Style Sheets.
Maybe style can be coded directly. these style acts as parameteras.
graph()
# x / pattern,color,gray,thickness,filled,symbol
graph()
# x / 1,0,,0,6,0
Hardmann
Re: Graph with series differentiate by colors and symbols
That's what style sheet are for. If you want a mix of black and white and color, just make them all color, but use RGB mappings for shades of gray, which have equal values of R, G and B. (F0F0F0 is very light, E0E0E0 is slightly darker, etc.).