I made a Graph with a Graph builder and I would like to adjust the line type of all three lines created with a smoother to "dashed" style.
Is it possible by editing the script somehow?
I thought I could simply add a linestyle command somewhere, but cannot figure out where.
Thank you very much!
Graph Builder(
Size( 567, 456 ),
Show Control Panel( 0 ),
Variables(
X( :Time to reach aeration ),
Y( :Aeration Target ),
Group Y( :Type filter ),
Overlay( :Rating )
),
Elements(
Points( X, Y, Legend( 16 ) ),
Smoother( X, Y, Legend( 19 ), Lambda( 0.0025 ))
),
SendToReport(
Dispatch(
{},
"Aeration Target",
ScaleBox,
{Scale( "Log" ), Format( "Best", 6 ), Min( 0.1 ),
Max( 6.30568784413151 ), Inc( 1 ), Minor Ticks( 1 ),
Label Row( {Show Major Grid( 1 ), Show Minor Grid( 1 )} )}
),
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
16,
Base( 0, 0, 0, Item ID( "H13", 1 ) ),
Base( 1, 0, 0, Item ID( "H14", 1 ) ),
Base( 2, 0, 0, Item ID( "NA", 1 ) )
)}
)
)
)