First time here? Check out the FAQ!
answered 12 years ago
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.