LineChartPointConfig constructor

LineChartPointConfig({
  1. Color normalPonitColor = const Color(0xFF1678FF),
  2. Color selectedPointColor = const Color(0xFF1678FF),
  3. Color selectedLineColor = const Color(0xFFA6A6A6),
  4. bool showSelectedLine = false,
  5. double selectedLineWidth = 1,
  6. double normalPointRadius = 2,
  7. double selectedPointRadius = 4,
  8. bool showNormalPoints = false,
  9. bool showSelectedPoint = false,
})

Implementation

LineChartPointConfig({
  this.normalPonitColor = const Color(0xFF1678FF),
  this.selectedPointColor = const Color(0xFF1678FF),
  this.selectedLineColor = const Color(0xFFA6A6A6),
  this.showSelectedLine = false,
  this.selectedLineWidth = 1,
  this.normalPointRadius = 2,
  this.selectedPointRadius = 4,
  this.showNormalPoints = false,
  this.showSelectedPoint = false,
});