Hi Mike,
Attached is a corrected version of your model that includes the following changes:
1) The keyword XAxisLabelFormat has been changed to %.0f. The default input is %.0fs, which adds an "s" after the number. This default seemed like a good idea at the time, but, based on your experience, I think I will remove the "s" from future releases.
2) The keyword YAxisLabelFormat has been changed to %.0f. The default input is %.1f, which shows one decimal place. There is no need for a decimal place for an integer valued output. For future reference, the format string works as follows: the "%" indicates the start of a format string, the ".1" portion indicates the number of decimal places, and the "f" indicates the standard format for floating point numbers. Everything else in the format string, before the "%" or after the "f" is considered to be text to be reproduced in the output.
3) The X-axis inputs XAxisStart, XAxisEnd, and XLines have been reworked to be consistent with this type of graph. The graph assumes that the value at the present simulation time is show on the right end of the graph at t=0 ("Now"). The times to the left of "Now" should be negative to indicate that they were recorded before "Now". Therefore, XAxisStart should be -480 h, XAxisEnd should be 0 h, and the entries in XLines should all be negative.
Harry