summaryrefslogtreecommitdiffstats
path: root/src/components/time_graph.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/time_graph.rs')
-rw-r--r--src/components/time_graph.rs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/components/time_graph.rs b/src/components/time_graph.rs
index 94192bb4..63d7330b 100644
--- a/src/components/time_graph.rs
+++ b/src/components/time_graph.rs
@@ -2,7 +2,6 @@ use std::borrow::Cow;
use concat_string::concat_string;
use tui::{
- backend::Backend,
layout::{Constraint, Rect},
style::Style,
symbols::Marker,
@@ -124,9 +123,7 @@ impl<'a> TimeGraph<'a> {
/// - Draws with the higher time value on the left, and lower on the right.
/// - Expects a [`TimeGraph`] to be passed in, which details how to draw the graph.
/// - Expects `graph_data`, which represents *what* data to draw, and various details like style and optional legends.
- pub fn draw_time_graph<B: Backend>(
- &self, f: &mut Frame<'_, B>, draw_loc: Rect, graph_data: &[GraphData<'_>],
- ) {
+ pub fn draw_time_graph(&self, f: &mut Frame<'_>, draw_loc: Rect, graph_data: &[GraphData<'_>]) {
let x_axis = self.generate_x_axis();
let y_axis = self.generate_y_axis();