I'd like to use DateListPlot to graph two TimeSeries on the same graph, filling between the two plots. For instance, if I have the following two TimeSeries:
ksyrMinMax = WeatherData["KSYR",#,{{2015,1,1},{2015,12,31},"Month"}]&/@{"MinTemperature","MaxTemperature"}
I can plot both TimeSeries on the same graph, and remove the line segments joining the points:
DateListPlot[ksyrMinMax,Joined->False]
What I'd like to do is then connect the Minimum and Maximum temperatures for each date, using the Filling option for DateListPlot, but I can't figure out the syntax.