This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
This is a minimal example of a card UI component with a chart embedded in it | |
Note - this requires dash_mantine_components and dash>=2.5.1 and pandas. | |
""" | |
from dash import html, Dash, dcc, Input, Output, callback | |
import dash_mantine_components as dmc | |
import pandas as pd | |
import plotly.express as px | |
from datetime import datetime |