AreaLineChart constructor

AreaLineChart(
  1. List<ChartLine> lines,
  2. Dates fromTo,
  3. List<Pair<Color, Color>>? _gradients, {
  4. FontWeight? tapTextFontWeight,
  5. String? yAxisName,
})

Implementation

AreaLineChart(List<ChartLine> lines, Dates fromTo, this._gradients,
    {this.tapTextFontWeight, this.yAxisName})
    : super(lines, fromTo,
          tapTextFontWeight: tapTextFontWeight, yAxisName: yAxisName);