
For example, the following program shows the style element GraphDataDefault, as
defined in the Default style:
proc template;
define style Styles.Default;
... more style elements ...
class GraphDataDefault /
endcolor = GraphColors("gramp3cend")
neutralcolor = GraphColors("gramp3cneutral")
startcolor = GraphColors("gramp3cstart")
markersize = 7px
markersymbol = "circle"
linethickness = 1px
linestyle = 1
contrastcolor = GraphColors("gcdata")
color = GraphColors("gdata");
You can use the DEFINE STYLE statement to create a new style from the Default style
and modify the GraphDataDefault style element.
The following program creates the new style MyStyleDefault, ...