SeriesLegend<D> constructor
- BehaviorPosition? position,
- OutsideJustification? outsideJustification,
- InsideJustification? insideJustification,
- bool? horizontalFirst,
- int? desiredMaxRows,
- int? desiredMaxColumns,
- EdgeInsets? cellPadding,
- List<
String> ? defaultHiddenSeries, - bool? showMeasures,
- LegendDefaultMeasure? legendDefaultMeasure,
- MeasureFormatter? measureFormatter,
- MeasureFormatter? secondaryMeasureFormatter,
- TextStyleSpec? entryTextStyle,
Create a new tabular layout legend.
By default, the legend is place above the chart and horizontally aligned to the start of the draw area.
position
the legend will be positioned relative to the chart. Default
position is top.
outsideJustification
justification of the legend relative to the chart
if the position is top, bottom, left, right. Default to start of the draw
area.
insideJustification
justification of the legend relative to the chart if
the position is inside. Default to top of the chart, start of draw area.
Start of draw area means left for LTR directionality, and right for RTL.
horizontalFirst
if true, legend entries will grow horizontally first
instead of vertically first. If the position is top, bottom, or inside,
this defaults to true. Otherwise false.
desiredMaxRows
the max rows to use before layout out items in a new
column. By default there is no limit. The max columns created is the
smaller of desiredMaxRows and number of legend entries.
desiredMaxColumns
the max columns to use before laying out items in a
new row. By default there is no limit. The max columns created is the
smaller of desiredMaxColumns and number of legend entries.
defaultHiddenSeries
lists the IDs of series that should be hidden on
first chart draw.
showMeasures
show measure values for each series.
legendDefaultMeasure
if measure should show when there is no selection.
This is set to none by default (only shows measure for selected data).
measureFormatter
formats measure value if measures are shown.
secondaryMeasureFormatter
formats measures if measures are shown for the
series that uses secondary measure axis.
Implementation
factory SeriesLegend({
common.BehaviorPosition? position,
common.OutsideJustification? outsideJustification,
common.InsideJustification? insideJustification,
bool? horizontalFirst,
int? desiredMaxRows,
int? desiredMaxColumns,
EdgeInsets? cellPadding,
List<String>? defaultHiddenSeries,
bool? showMeasures,
common.LegendDefaultMeasure? legendDefaultMeasure,
common.MeasureFormatter? measureFormatter,
common.MeasureFormatter? secondaryMeasureFormatter,
common.TextStyleSpec? entryTextStyle,
}) {
// Set defaults if empty.
position ??= defaultBehaviorPosition;
outsideJustification ??= defaultOutsideJustification;
insideJustification ??= defaultInsideJustification;
cellPadding ??= defaultCellPadding;
// Set the tabular layout settings to match the position if it is not
// specified.
horizontalFirst ??= (position == common.BehaviorPosition.top ||
position == common.BehaviorPosition.bottom ||
position == common.BehaviorPosition.inside);
final layoutBuilder = horizontalFirst
? new TabularLegendLayout.horizontalFirst(
desiredMaxColumns: desiredMaxColumns, cellPadding: cellPadding)
: new TabularLegendLayout.verticalFirst(
desiredMaxRows: desiredMaxRows, cellPadding: cellPadding);
return new SeriesLegend._internal(
contentBuilder:
new TabularLegendContentBuilder(legendLayout: layoutBuilder),
selectionModelType: common.SelectionModelType.info,
position: position,
outsideJustification: outsideJustification,
insideJustification: insideJustification,
defaultHiddenSeries: defaultHiddenSeries,
showMeasures: showMeasures ?? false,
legendDefaultMeasure:
legendDefaultMeasure ?? common.LegendDefaultMeasure.none,
measureFormatter: measureFormatter,
secondaryMeasureFormatter: secondaryMeasureFormatter,
entryTextStyle: entryTextStyle);
}