pub fn create_estimate_chart<'a, T>(
grouped_time_log: BTreeMap<impl Into<Option<&'a T>> + Clone, Vec<&'a TimeLog>>,
title: &str,
render_options: &mut RenderOptions<'_>,
) -> Result<(), ChartSettingError>where
T: Display + 'a,Expand description
Creates a chart with estimates and actual time from grouped time logs (i.e., Estimates vs. actual time on all labels)
ยงErrors
- Returns
ChartSettingError::FileNotFoundif the file inRenderOptionsdoes not exist. - Returns
ChartSettingError::CharmingErrorif the graph could not be created.