Plot[{Sin[x], Cos[x]}, {x, 0, 10}, Mesh -> {{0, π}}, MeshShading -> {Black, Red}]
In the above, how can I specify that I want the mesh for just, say the Sin function and not the Cos? I know I can use two plots and combine them with Show, but this is not what I want.


Show[ {Plot[Sin[x], {x, 0, 10}, Mesh -> {{0, \[Pi]}}, MeshShading -> {Black, Red}], Plot[Cos[x], {x, 0, 10}, Mesh -> {{0, \[Pi]}}]}]– Dr. belisarius Feb 07 '13 at 16:59Meshshall we assume that you just want output that visually matches the graphic shown in that answer? – Mr.Wizard Mar 10 '13 at 19:09