ChartBeanSystem constructor

ChartBeanSystem({
  1. double lineWidth = 2,
  2. bool isCurve = false,
  3. required List<ChartLineBean> chartBeans,
  4. List<Color>? shaderColors,
  5. Color lineColor = defaultColor,
  6. Gradient? lineGradient,
  7. bool enableTouch = false,
})

Implementation

ChartBeanSystem(
    {this.lineWidth = 2,
    this.isCurve = false,
    required this.chartBeans,
    this.shaderColors,
    this.lineColor = defaultColor,
    this.lineGradient,
    this.enableTouch = false});