First time here? Check out the FAQ!
answered 2013-03-29 22:45:02 +0100
Use a dict {<index of first curve>: [<index of second curve>]}, like this:
{<index of first curve>: [<index of second curve>]}
sage: plot([x, x^2], fill={0:[1]})
See the plot documentation for more examples.