I try to plot some data in Mathematica using the ListLinePlot[]. Unfortunately the plot option ColorFunction, Filling and FillingStyle won't work together. For example:
ListLinePlot[data1D, ColorFunction -> "Rainbow", ColorFunctionScaling -> True, PlotStyle -> Thick, Filling -> Axis ] will give me the following result:
The issue with this plot is the missing opacity. You can barely see the axes label and it gets worse when you use multiple functions. The FillingStyle option gives theoretically the possibility to change the opacity. Adding the following line to my code
FillingStyle -> Opacity[0.1] gives me some opacity but unfortunately I lose the ColorFunction:
Does somebody have any idea how to use Filling, FillingStyle, Opacity and ColorFunction together?
Thanks a lot!






