LegendEntry<D> constructor

LegendEntry<D>(
  1. ImmutableSeries<D> series,
  2. String label, {
  3. dynamic datum,
  4. int? datumIndex,
  5. D? domain,
  6. double? value,
  7. List<int?>? selectedDataIndexes,
  8. Color? color,
  9. bool isSelected = false,
  10. TextStyleSpec? textStyle,
  11. int? rowNumber,
  12. int? columnNumber,
  13. int? rowCount,
  14. int? columnCount,
  15. bool? inFirstRow,
  16. bool? inFirstColumn,
  17. bool? inLastRow,
  18. bool? inLastColumn,
})

Implementation

LegendEntry(
  this.series,
  String label, {
  this.datum,
  this.datumIndex,
  this.domain,
  this.value,
  this.selectedDataIndexes,
  this.color,
  this.isSelected = false,
  TextStyleSpec? textStyle,
  int? rowNumber,
  int? columnNumber,
  int? rowCount,
  int? columnCount,
  bool? inFirstRow,
  bool? inFirstColumn,
  bool? inLastRow,
  bool? inLastColumn,
}) : super(label,
          textStyle: textStyle,
          rowNumber: rowNumber,
          columnNumber: columnNumber,
          rowCount: rowCount,
          columnCount: columnCount,
          inFirstRow: inFirstRow,
          inFirstColumn: inFirstColumn,
          inLastRow: inLastRow,
          inLastColumn: inLastColumn);