Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gcoue committed Jan 3, 2024
1 parent fc196dd commit 84e064d
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions finalynx/dashboard/dashboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,23 +182,17 @@ def _on_select_color_map(data: Any) -> None:
)
with ui.row():
self.chart_envelopes = ui.chart(AnalyzeEnvelopes(self.selected_node).chart())
#self.chart_simulation = ui.chart(timeline.chart() if timeline else {})
self.chart_etats_enveloppes = ui.chart(timeline.chartOnTimeline("Evolution des états d'enveloppes",timeline._log_env_states,{
"Unknown": "#434348",
"Closed": "#999999",
"Locked": "#F94144",
"Taxed": "#F9C74F",
"Free": "#7BB151",
}) if timeline else {})
#self.chart_simulation1 = ui.chart(timeline.chartEnveloppeTimeline() if timeline else {})
self.chart_enveloppes = ui.chart(timeline.chartOnTimeline("Evolution des enveloppes",timeline._log_enveloppe_values) if timeline else {})
#self.chart_simulation2 = ui.chart(timeline.OLDchartBucket() if timeline else {})
#self.chart_simulation3 = ui.chart(timeline.chartAssetTimeline() if timeline else {})
self.chart_asset_classes = ui.chart(timeline.chartOnTimeline("Evolution des classes d'actifs",timeline._log_assets_classes_values,AnalyzeAssetClasses.ASSET_COLORS_FINARY) if timeline else {})
self.chart_subasset_classes = ui.chart(timeline.chartOnTimeline("Evolution des sous-classes d'actifs",timeline._log_assets_subclasses_values,AnalyzeSubAssetClasses.SUBASSET_COLORS_FINARY) if timeline else {})
#self.chart_simulation4 = ui.chart(timeline.chartSubAssetTimeline() if timeline else {})
self.chart_lines = ui.chart(timeline.chartOnTimeline("Evolution des lignes du portefeuille", timeline._log_lines_values, visible_by_default=False) if timeline else {})
#self.chart_simulation5 = ui.chart(timeline.chartLinesTimeline() if timeline else {})

ui.run(
title="Finalynx Dashboard",
Expand Down

0 comments on commit 84e064d

Please sign in to comment.