filledMarkerLinesValues property
Adds shaded area between markerlines: It is possible to have shaded areas between the defined markerlines
It is important that the order of enums in the List
Example:
AnimatedLineChart(
lineChart,
filledMarkerLinesValues:[
MaxMin.MAX,
MaxMin.MAX,
MaxMin.MIN,
MaxMin.MIN],
For the area between the markerlines to be filled, remember to set 'fillMarkerLines' to true.
Implementation
final List<MaxMin>? filledMarkerLinesValues;