Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(72)

Unified Diff: packages/charted/lib/charts/chart_legend.dart

Issue 1521693002: Roll Observatory deps (charted -> ^0.3.0) (Closed) Base URL: https://chromium.googlesource.com/external/github.com/dart-lang/observatory_pub_packages.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/charted/lib/charts/chart_data.dart ('k') | packages/charted/lib/charts/chart_series.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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});
}
« no previous file with comments | « packages/charted/lib/charts/chart_data.dart ('k') | packages/charted/lib/charts/chart_series.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698