LegendEntry<D> constructor
LegendEntry<D> (
- ImmutableSeries<
D> series, - String label, {
- dynamic datum,
- int? datumIndex,
- D? domain,
- double? value,
- List<
int?> ? selectedDataIndexes, - Color? color,
- bool isSelected = false,
- TextStyleSpec? textStyle,
- int? rowNumber,
- int? columnNumber,
- int? rowCount,
- int? columnCount,
- bool? inFirstRow,
- bool? inFirstColumn,
- bool? inLastRow,
- 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);