MukeshKapoor25's picture
chart and table widgets
194f4c3
"""Operations chart widget definitions."""
OPERATIONS_CHART_WIDGETS: dict = {
"wid_chart_appt_volume_trend_001": {
"title": "Appointment Volume Trend",
"category": "operations_charts",
"unit": "count",
"widget_type": "chart",
"chart_type": "line",
"description": "Daily appointment count trend for the period",
"drill_down_url": "/retail/appointments",
},
"wid_chart_appt_noshow_trend_001": {
"title": "No-Show Trend",
"category": "operations_charts",
"unit": "%",
"widget_type": "chart",
"chart_type": "line",
"description": "Daily no-show rate as a percentage of booked appointments",
"drill_down_url": "/retail/appointments",
},
"wid_chart_appt_cancellation_trend_001": {
"title": "Cancellation Trend",
"category": "operations_charts",
"unit": "%",
"widget_type": "chart",
"chart_type": "line",
"description": "Daily cancellation rate as a percentage of total appointments",
"drill_down_url": "/retail/appointments",
},
}