Calling multiple user plot recipes from single recipe

With this example, this worked:

@recipe function f(s::SeveralData)
           @series begin
               return MultiSeries((s.t, s.ys...))
           end
           @series begin
               return endPlot(s.t_end)
           end
       end