| Index: packages/charted/lib/charts/chart_legend.dart
|
| diff --git a/packages/charted/lib/charts/chart_legend.dart b/packages/charted/lib/charts/chart_legend.dart
|
| index a55a9182e24a10d0be5bf4ad68287f25805aab7e..8cc69d09ec1c250e939645d756c5d39203193eb2 100644
|
| --- a/packages/charted/lib/charts/chart_legend.dart
|
| +++ b/packages/charted/lib/charts/chart_legend.dart
|
| @@ -24,8 +24,8 @@ abstract class ChartLegend {
|
|
|
| /// Factory to create an instance of the default implementation.
|
| factory ChartLegend(Element host,
|
| - {maxItems: 0, title: '', showValues: false}) =>
|
| - new DefaultChartLegendImpl(host, maxItems, showValues, title);
|
| + {maxItems: 0, title: '', showValues: false}) =>
|
| + new DefaultChartLegendImpl(host, maxItems, showValues, title);
|
| }
|
|
|
| ///
|
| @@ -52,6 +52,11 @@ class ChartLegendItem {
|
| /// List of series that this column is part of
|
| Iterable<ChartSeries> series;
|
|
|
| - ChartLegendItem({this.index, this.color,
|
| - this.label, this.description, this.series, this.value});
|
| + ChartLegendItem(
|
| + {this.index,
|
| + this.color,
|
| + this.label,
|
| + this.description,
|
| + this.series,
|
| + this.value});
|
| }
|
|
|