Yeah sure! I know it gets a little confusing
<pre class="ip-ubbcode-code-pre">
# sample data
2010-09-05 02:36:10-04:00,225,225.4,55.2,48.4,95.6,3,8,0
2010-09-05 02:36:23-04:00,225,225.4,55.2,48.4,95.8,0,7,0
2010-09-05 02:36:42-04:00,225,225.1,55.2,48.4,95.6,8,6,0
2010-09-05 02:37:01-04:00,225,225.1,55.2,48.4,95.6,3,6,0
2010-09-05 02:37:11-04:00,225,225.1,55.2,49.2,95.8,0,6,0
2010-09-05 02:37:21-04:00,225,225.1,56.0,49.2,95.6,0,5,0
2010-09-05 02:37:34-04:00,225,224.8,56.0,49.2,95.6,9,5,0
# Fields are
DateTime,SetPoint,Probe1,Probe2,Probe3,Ambient,FanInstantaneous,FanMovingAverage,LidDetectIndicator
plot "data.txt" \
# I wanted to fill the area between the SetPoint and the Pit value, so you tell gnuplot
# to plot Time
oint1
oint2 with filledcurves and it fills the area between Point1 and
# Point2, in this case with a gray
using 1:3:2 linecolor rgb "#eeeeee" notitle with filledcurves, \
# Next is the yellow lid indicator. Note that solid fills are not transparent
# so put the least important filled stuff first, and work toward the more
# important filled boxes. If you can get transparency working in the PNG
# terminal, I'd love to hear how
'' using 1:9 linecolor rgb "#ffffcc" notitle axis x1y2 with boxes fs solid, \
# this is the Moving Average Fan speed in a filled blue bar. You could do also
# do a "with filledcurves above y1=0" instead of "with boxes fillstyle solid"
# (I think that's the correct filledcurves syntax)
'' using 1:8 linecolor rgb "#cceeff" notitle axis x1y2 with boxes fs solid, \
# The instantaneous fan speed, I think I deleted this line before I generated
# my example graph, because it doesn't have this dark blue line on it so ignore!
'' using 1:7 linecolor rgb "#3169c6" notitle axis x1y2, \
# The Set Point in a thin red line
'' using 1:2 linecolor rgb "red" notitle, \
# The pit temperature in a thicker red line
'' using 1:3 linecolor rgb "red" linewidth 3 title "Pit", \
# Finally the food probes and ambient temperature
'' using 1:4 linecolor rgb "green" title "Brisket", \
'' using 1:5 linecolor rgb "blue" title "Pit Top", \
'' using 1:6 linecolor rgb "purple" title "Ambient"
</pre>
EDIT: Note I don't think you can have comments and spaces in your gnuplot config, so don't try to use this commented version directly.