blob: 484613ac100dc6583ba6dd2708dae684404d678f [file] [log] [blame]
//
// Copyright 2014 Google Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
//
part of charted.charts;
abstract class LayoutRendererBase implements LayoutRenderer {
LayoutArea area;
ChartSeries series;
ChartTheme theme;
Rect rect;
Element host;
Selection root;
SelectionScope scope;
StreamController<ChartEvent> mouseOverController;
StreamController<ChartEvent> mouseOutController;
StreamController<ChartEvent> mouseClickController;
void _ensureAreaAndSeries(ChartArea area, ChartSeries series) {
assert(area != null && series != null);
this.area = area;
this.series = series;
}
void _ensureReadyToDraw(Element element) {
assert(series != null && area != null);
assert(element != null && element is GElement);
if (scope == null) {
host = element;
scope = new SelectionScope.element(element);
root = scope.selectElements([host]);
}
theme = area.theme;
rect = area.layout.renderArea;
}
@override
void dispose() {
if (root == null) return;
root.selectAll('.row-group').remove();
}
@override
Stream<ChartEvent> get onValueMouseOver {
if (mouseOverController == null) {
mouseOverController = new StreamController.broadcast(sync: true);
}
return mouseOverController.stream;
}
@override
Stream<ChartEvent> get onValueMouseOut {
if (mouseOutController == null) {
mouseOutController = new StreamController.broadcast(sync: true);
}
return mouseOutController.stream;
}
@override
Stream<ChartEvent> get onValueClick {
if (mouseClickController == null) {
mouseClickController = new StreamController.broadcast(sync: true);
}
return mouseClickController.stream;
}
/// Get a color using the theme's ordinal scale of colors
String colorForKey(i, [int state = ChartTheme.STATE_NORMAL]) =>
area.theme.getColorForKey(series.measures.elementAt(i), state);
}