Hello,
I have a fairly simple problem, but cannot find the answer in the scripting guide. I created a temperature graph in graph builder using hourly temperature data. I used a line graph to show the daily mean and added error bars to show the range of daily temperatures. The error bars are the same color as the line graph which makes the mean line hard to see. To get around this, I right-click on the graph and select "customize". From the customize window, I can change the color of the error bars from black to gray and move up error bar in the drawing order. This makes the graph exactly how I want it. However, the customizations do not get carried over to the script. Whenever I save the script and run it again or change the date range of the graph, it goes back to the way it was before I customized it. Is there a way I can save these customizations in the script?
Thanks!
Graph Builder(
Size( 1210, 948 ),
Show Legend( 0 ),
Legend Position( "Bottom" ),
Variables( X( :Date 2 ), Y( :Mean Daily Temp ) ),
Elements(
Line(
X,
Y,
Legend( 11 ),
Row order( 0 ),
Summary Statistic( "Mean" ),
Error Bars( "Range" )
)
),
Local Data Filter(
Location( {1920, 0} ),
Mode( Select( 0 ), Show( 1 ), Include( 1 ) ),
Add Filter(
columns( :Date 2, :Site ),
Where( :Date 2 >= 01May2012 & :Date 2 <= 30Apr2013 ),
Where( :Site == "AP" ),
Display( :Date 2 ),
Display( :Site, Size( 204, 234 ), List Display )
)
),
SendToReport(
Dispatch(
{},
"Date 2",
ScaleBox,
{Min( 3418641920 ), Max( 3450091520 ), Interval( "Day" ), Inc( 6 ),
Minor Ticks( 0 ), Label Row Nesting( 3 ), Show Minor Ticks( 0 )}
),
Dispatch(
{},
"Mean Daily Temp",
ScaleBox,
{Min( 11.3154759267269 ), Max( 21.9381773452312 ), Inc( 0.5 ),
Minor Ticks( 0 ), Show Major Grid( 1 ), Show Minor Ticks( 0 )}
),
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
11,
Level Name( 0, "mean daily temp" ),
Properties( 0, {Line Color( 0 ), Fill Color( 0 )} )
)}
),
Dispatch(
{},
"graph title",
TextEditBox,
{Set Text( "Mean Daily Temperature" )}
),
Dispatch( {}, "X title", TextEditBox, {Set Text( "" )} ),
Dispatch( {}, "Y title", TextEditBox, {Set Text( "Temperature (C)" )} ),
Dispatch(
{},
"Graph Builder",
FrameBox,
{Grid Line Order( 1 ), Reference Line Order( 4 )}
)
)
);