BrianIsaac's picture
feat: add interactive visualisations and enhanced UI with comprehensive testing
b9892ff
"""Visualization utilities for Portfolio Intelligence Platform."""
from backend.visualizations.plotly_charts import (
create_portfolio_allocation_chart,
create_risk_metrics_dashboard,
create_performance_chart,
create_correlation_heatmap,
create_optimization_comparison,
apply_financial_theme,
)
__all__ = [
'create_portfolio_allocation_chart',
'create_risk_metrics_dashboard',
'create_performance_chart',
'create_correlation_heatmap',
'create_optimization_comparison',
'apply_financial_theme',
]