Is it possible to assign the marker style by group name??Taking this script for example,I want to let column "mean" line-style always be dashed and column "Range" line-style be solid in the all page(page by process step) of graph.Some of my page(process step) don't have the "Mean"data.If I script like this,the line style will not fixed at all my plot.
Graph Builder(
Size( 562, 477 ),
Variables( X( :date ), Y( :Mean ), Y( :Range, Position( 1 ) ) ),
Elements(
Line( X, Y( 1 ), Y( 2 ), Legend( 9 ) ),
Points( X, Y( 1 ), Y( 2 ), Legend( 10 ) )
),
SendToReport(
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
9,
Properties( 0, {Line Style( "Dashed" )} ),
Properties( 1, {Line Style( "Solid" )} )
)}
),
Dispatch( {}, "Graph Builder", FrameBox, {Marker Size( 3 )} )
)
);
I am trying to did like the following script. I assign the properties to a "string"(or a sepecific value in a column).But it doesn't works. Could anyone help?? Thanks!
Properties( "Mean", {Line Style( "Dashed" )} ),
Properties( "Range", {Line Style( "Dashed" )} ),