| Index: packages/charted/lib/selection/selection.dart
|
| diff --git a/packages/charted/lib/selection/selection.dart b/packages/charted/lib/selection/selection.dart
|
| index d040745c4d508ba5d11d6c07b95398023c8f174d..c9036dcef2167364ddc7979cfb26faaffcf4643d 100644
|
| --- a/packages/charted/lib/selection/selection.dart
|
| +++ b/packages/charted/lib/selection/selection.dart
|
| @@ -152,8 +152,8 @@ abstract class Selection {
|
| * selection (with data associated to the element, index of the element in
|
| * it's group and the element itself) to get the value of the property.
|
| */
|
| - void styleWithCallback(String property,
|
| - SelectionCallback<String> fn, {String priority});
|
| + void styleWithCallback(String property, SelectionCallback<String> fn,
|
| + {String priority});
|
|
|
| /**
|
| * Sets textContent of all elements in the selection to [val]. A side-effect
|
| @@ -262,8 +262,8 @@ abstract class Selection {
|
| * it's group and the element itself) to get the data to be set on the
|
| * current element.
|
| */
|
| - DataSelection dataWithCallback(
|
| - SelectionCallback<Iterable> fn, [SelectionKeyFunction keyFn]);
|
| + DataSelection dataWithCallback(SelectionCallback<Iterable> fn,
|
| + [SelectionKeyFunction keyFn]);
|
|
|
| /**
|
| * Associates data with all the elements - no join is performed. Unlike
|
| @@ -287,7 +287,6 @@ abstract class Selection {
|
| Transition transition();
|
| }
|
|
|
| -
|
| /*
|
| * Group of elements in the selection.
|
| * Each selection may contain more than one group of elements.
|
| @@ -297,7 +296,6 @@ abstract class SelectionGroup {
|
| Element parent;
|
| }
|
|
|
| -
|
| /**
|
| * [EnterSelection] is a sub-selection that represents missing elements of a
|
| * selection - an element is considered missing when there is data and no
|
|
|