Change dot symbol for line chart

This commit is contained in:
Florian Dehau 2016-11-03 12:16:31 +01:00
parent dce4bf15b7
commit 20465f2159
2 changed files with 1 additions and 2 deletions

View File

@ -34,4 +34,3 @@ pub mod line {
}
pub const DOT: &'static str = "";
pub const BLACK_CIRCLE: &'static str = "";

View File

@ -334,7 +334,7 @@ impl<'a> Widget for Chart<'a> {
buf.set_cell(graph_area.left() + dx,
graph_area.top() + dy,
symbols::BLACK_CIRCLE,
symbols::DOT,
dataset.color,
self.background_color);
}