I am trying filling between of lines: $ y = x^3$, $y=0$, $x=-1$, and $x=1$. I tried.
Plot[{x^3, 0}, {x, -1, 1}, PlotRange -> {-2, 2},
PlotStyle -> {Automatic, Red},
Filling -> {1 -> {{2}, {LightBlue, White}}}, PlotPoints -> 100]
How can I get fill graph with x from 0 to 1?


Whiteto something you can see ? – b.gates.you.know.what Apr 14 '20 at 05:54Filling -> { 1 -> {Axis, LightBlue} }– LouisB Apr 14 '20 at 06:32