{# Performance Metrics Radar Chart Data #} {# 24 business metrics tracked across 8 quarters #} {# Comparing Q1 2023 vs Q4 2024 (most dramatic comparison) #} {% set chart_labels = [ "Customer Satisfaction", "Website Performance", "Sales Conversion", "Brand Awareness", "Product Quality", "Customer Support", "Market Share", "Employee Satisfaction", "Innovation Index", "Social Engagement", "Mobile Experience", "Email Marketing", "Content Quality", "Lead Generation", "SEO Ranking", "User Retention", "Platform Stability", "Security Score", "API Response Time", "Data Accuracy", "Team Productivity", "Customer Loyalty", "Feature Adoption", "Revenue Growth" ] %} {% set chart_datasets = [ { "label": "Q1 2023", "data": [72, 68, 45, 58, 81, 76, 42, 69, 53, 61, 64, 57, 74, 51, 48, 79, 85, 88, 71, 82, 66, 73, 49, 56], "borderColor": "rgba(255, 99, 132, 1)", "backgroundColor": "rgba(255, 99, 132, 0.2)", "pointBackgroundColor": "rgba(255, 99, 132, 1)", "pointBorderColor": "#fff", "pointHoverBackgroundColor": "#fff", "pointHoverBorderColor": "rgba(255, 99, 132, 1)" }, { "label": "Q4 2024", "data": [94, 93, 75, 88, 96, 95, 66, 91, 83, 92, 94, 86, 96, 81, 81, 96, 98, 98, 94, 97, 91, 95, 81, 90], "borderColor": "rgba(54, 162, 235, 1)", "backgroundColor": "rgba(54, 162, 235, 0.2)", "pointBackgroundColor": "rgba(54, 162, 235, 1)", "pointBorderColor": "#fff", "pointHoverBackgroundColor": "#fff", "pointHoverBorderColor": "rgba(54, 162, 235, 1)" } ] %} {% set chart_type = "radar" %} {% set chart_title = "Performance Metrics: Q1 2023 vs Q4 2024" %}