ChartBeanSystem constructor

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

Implementation

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