PlexLineChart constructor

const PlexLineChart({
  1. Key? key,
  2. String? title,
  3. required List<PlexLineSeries> series,
  4. bool showArea = false,
  5. double height = 300,
  6. bool showLegend = true,
  7. void onDataPointTap(
    1. String seriesName,
    2. DateTime x,
    3. double y
    )?,
})

Implementation

const PlexLineChart({
  super.key,
  this.title,
  required this.series,
  this.showArea = false,
  this.height = 300,
  this.showLegend = true,
  this.onDataPointTap,
});