| 1 | <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1280 720" width="1280" height="720" |
| 2 | font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif" |
| 3 | font-size="12"> |
| 4 | <!-- |
| 5 | Diverging Bar Chart (Butterfly Chart) Template |
| 6 | Usage: Left-right comparison, bi-directional data display |
| 7 | Scenarios: Population pyramid, A/B testing, Gender comparison, Income/Expense comparison |
| 8 | Supports: 8 categories, left and right data groups |
| 9 | --> |
| 10 | <!-- Background --> |
| 11 | <rect width="1280" height="720" fill="#FFFFFF"/> |
| 12 | <!-- Title --> |
| 13 | <g id="header" data-pptx-bounds="40 15 1200 125"> |
| 14 | <text x="640" y="55" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 15 | font-size="34" font-weight="bold" fill="#0F172A" text-anchor="middle">User Age Distribution Comparison</text> |
| 16 | <text x="640" y="90" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 17 | font-size="18" fill="#64748B" text-anchor="middle">2025 User Persona Analysis · Sample Size N=50,000</text> |
| 18 | </g> |
| 19 | <!-- Legend --> |
| 20 | <g id="legend" data-pptx-bounds="476 108 330 34" transform="translate(510, 115)"> |
| 21 | <rect x="0" y="0" width="20" height="20" rx="3" fill="#2563EB"/> |
| 22 | <text x="28" y="15" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 23 | font-size="15" fill="#475569">Male Users</text> |
| 24 | <rect x="140" y="0" width="20" height="20" rx="3" fill="#DB2777"/> |
| 25 | <text x="168" y="15" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 26 | font-size="15" fill="#475569">Female Users</text> |
| 27 | </g> |
| 28 | <!-- Chart Area --> |
| 29 | <g id="chartArea" data-pptx-bounds="24 128 1232 552"> |
| 30 | <!-- Central Axis Label Background (Improves readability) --> |
| 31 | <rect x="580" y="160" width="120" height="460" fill="#F8FAFC" rx="4"/> |
| 32 | <!-- Left X-axis Scale --> |
| 33 | <text x="120" y="645" |
| 34 | font-size="13" fill="#64748B" text-anchor="middle">20%</text> |
| 35 | <text x="240" y="645" |
| 36 | font-size="13" fill="#64748B" text-anchor="middle">15%</text> |
| 37 | <text x="360" y="645" |
| 38 | font-size="13" fill="#64748B" text-anchor="middle">10%</text> |
| 39 | <text x="480" y="645" |
| 40 | font-size="13" fill="#64748B" text-anchor="middle">5%</text> |
| 41 | <!-- Right X-axis Scale --> |
| 42 | <text x="800" y="645" |
| 43 | font-size="13" fill="#64748B" text-anchor="middle">5%</text> |
| 44 | <text x="920" y="645" |
| 45 | font-size="13" fill="#64748B" text-anchor="middle">10%</text> |
| 46 | <text x="1040" y="645" |
| 47 | font-size="13" fill="#64748B" text-anchor="middle">15%</text> |
| 48 | <text x="1160" y="645" |
| 49 | font-size="13" fill="#64748B" text-anchor="middle">20%</text> |
| 50 | <!-- Grid Lines --> |
| 51 | <line x1="120" y1="160" x2="120" y2="620" stroke="#E2E8F0" stroke-width="1" stroke-dasharray="4,4"/> |
| 52 | <line x1="240" y1="160" x2="240" y2="620" stroke="#E2E8F0" stroke-width="1" stroke-dasharray="4,4"/> |
| 53 | <line x1="360" y1="160" x2="360" y2="620" stroke="#E2E8F0" stroke-width="1" stroke-dasharray="4,4"/> |
| 54 | <line x1="480" y1="160" x2="480" y2="620" stroke="#E2E8F0" stroke-width="1" stroke-dasharray="4,4"/> |
| 55 | <line x1="800" y1="160" x2="800" y2="620" stroke="#E2E8F0" stroke-width="1" stroke-dasharray="4,4"/> |
| 56 | <line x1="920" y1="160" x2="920" y2="620" stroke="#E2E8F0" stroke-width="1" stroke-dasharray="4,4"/> |
| 57 | <line x1="1040" y1="160" x2="1040" y2="620" stroke="#E2E8F0" stroke-width="1" stroke-dasharray="4,4"/> |
| 58 | <line x1="1160" y1="160" x2="1160" y2="620" stroke="#E2E8F0" stroke-width="1" stroke-dasharray="4,4"/> |
| 59 | <!-- |
| 60 | Data Description: |
| 61 | Height of each age group bar: 50px, Gap: 6px |
| 62 | Max width: 480px (represents 20%) |
| 63 | Every 1% = 24px |
| 64 | Male data: 3%, 8%, 15%, 18%, 16%, 12%, 6%, 2% |
| 65 | Female data: 4%, 10%, 17%, 15%, 14%, 10%, 5%, 3% |
| 66 | --> |
| 67 | <!-- chart-plot-area: 120,160,1160,620 --> |
| 68 | <!-- Age Group 1: 60+ --> |
| 69 | <g id="row-1" transform="translate(0, 168)"> |
| 70 | <rect x="528" y="0" width="72" height="50" rx="4" fill="#2563EB"/> |
| 71 | <text x="518" y="32" |
| 72 | font-size="14" font-weight="600" fill="#1D4ED8" text-anchor="end">3%</text> |
| 73 | <text x="640" y="32" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 74 | font-size="15" font-weight="600" fill="#0F172A" text-anchor="middle">60+</text> |
| 75 | <rect x="680" y="0" width="96" height="50" rx="4" fill="#DB2777"/> |
| 76 | <text x="786" y="32" |
| 77 | font-size="14" font-weight="600" fill="#BE185D">4%</text> |
| 78 | </g> |
| 79 | <!-- Age Group 2: 50-59 --> |
| 80 | <g id="row-2" transform="translate(0, 224)"> |
| 81 | <rect x="408" y="0" width="192" height="50" rx="4" fill="#2563EB"/> |
| 82 | <text x="398" y="32" |
| 83 | font-size="14" font-weight="600" fill="#1D4ED8" text-anchor="end">8%</text> |
| 84 | <text x="640" y="32" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 85 | font-size="15" font-weight="600" fill="#0F172A" text-anchor="middle">50-59</text> |
| 86 | <rect x="680" y="0" width="240" height="50" rx="4" fill="#DB2777"/> |
| 87 | <text x="930" y="32" |
| 88 | font-size="14" font-weight="600" fill="#BE185D">10%</text> |
| 89 | </g> |
| 90 | <!-- Age Group 3: 40-49 --> |
| 91 | <g id="row-3" transform="translate(0, 280)"> |
| 92 | <rect x="240" y="0" width="360" height="50" rx="4" fill="#2563EB"/> |
| 93 | <text x="230" y="32" |
| 94 | font-size="14" font-weight="600" fill="#1D4ED8" text-anchor="end">15%</text> |
| 95 | <text x="640" y="32" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 96 | font-size="15" font-weight="600" fill="#0F172A" text-anchor="middle">40-49</text> |
| 97 | <rect x="680" y="0" width="408" height="50" rx="4" fill="#DB2777"/> |
| 98 | <text x="1098" y="32" |
| 99 | font-size="14" font-weight="600" fill="#BE185D">17%</text> |
| 100 | </g> |
| 101 | <!-- Age Group 4: 30-39 (Peak) --> |
| 102 | <g id="row-4" transform="translate(0, 336)"> |
| 103 | <rect x="168" y="0" width="432" height="50" rx="4" fill="#2563EB"/> |
| 104 | <text x="158" y="32" |
| 105 | font-size="14" font-weight="bold" fill="#1D4ED8" text-anchor="end">18%</text> |
| 106 | <text x="640" y="32" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 107 | font-size="15" font-weight="600" fill="#0F172A" text-anchor="middle">30-39</text> |
| 108 | <rect x="680" y="0" width="360" height="50" rx="4" fill="#DB2777"/> |
| 109 | <text x="1050" y="32" |
| 110 | font-size="14" font-weight="bold" fill="#BE185D">15%</text> |
| 111 | </g> |
| 112 | <!-- Age Group 5: 25-29 --> |
| 113 | <g id="row-5" transform="translate(0, 392)"> |
| 114 | <rect x="216" y="0" width="384" height="50" rx="4" fill="#2563EB"/> |
| 115 | <text x="206" y="32" |
| 116 | font-size="14" font-weight="600" fill="#1D4ED8" text-anchor="end">16%</text> |
| 117 | <text x="640" y="32" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 118 | font-size="15" font-weight="600" fill="#0F172A" text-anchor="middle">25-29</text> |
| 119 | <rect x="680" y="0" width="336" height="50" rx="4" fill="#DB2777"/> |
| 120 | <text x="1026" y="32" |
| 121 | font-size="14" font-weight="600" fill="#BE185D">14%</text> |
| 122 | </g> |
| 123 | <!-- Age Group 6: 20-24 --> |
| 124 | <g id="row-6" transform="translate(0, 448)"> |
| 125 | <rect x="312" y="0" width="288" height="50" rx="4" fill="#2563EB"/> |
| 126 | <text x="302" y="32" |
| 127 | font-size="14" font-weight="600" fill="#1D4ED8" text-anchor="end">12%</text> |
| 128 | <text x="640" y="32" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 129 | font-size="15" font-weight="600" fill="#0F172A" text-anchor="middle">20-24</text> |
| 130 | <rect x="680" y="0" width="240" height="50" rx="4" fill="#DB2777"/> |
| 131 | <text x="930" y="32" |
| 132 | font-size="14" font-weight="600" fill="#BE185D">10%</text> |
| 133 | </g> |
| 134 | <!-- Age Group 7: 18-19 --> |
| 135 | <g id="row-7" transform="translate(0, 504)"> |
| 136 | <rect x="456" y="0" width="144" height="50" rx="4" fill="#2563EB"/> |
| 137 | <text x="446" y="32" |
| 138 | font-size="14" font-weight="600" fill="#1D4ED8" text-anchor="end">6%</text> |
| 139 | <text x="640" y="32" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 140 | font-size="15" font-weight="600" fill="#0F172A" text-anchor="middle">18-19</text> |
| 141 | <rect x="680" y="0" width="120" height="50" rx="4" fill="#DB2777"/> |
| 142 | <text x="810" y="32" |
| 143 | font-size="14" font-weight="600" fill="#BE185D">5%</text> |
| 144 | </g> |
| 145 | <!-- Age Group 8: <18 --> |
| 146 | <g id="row-8" transform="translate(0, 560)"> |
| 147 | <rect x="552" y="0" width="48" height="50" rx="4" fill="#2563EB"/> |
| 148 | <text x="542" y="32" |
| 149 | font-size="14" font-weight="600" fill="#1D4ED8" text-anchor="end">2%</text> |
| 150 | <text x="640" y="32" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 151 | font-size="15" font-weight="600" fill="#0F172A" text-anchor="middle"><18</text> |
| 152 | <rect x="680" y="0" width="72" height="50" rx="4" fill="#DB2777"/> |
| 153 | <text x="762" y="32" |
| 154 | font-size="14" font-weight="600" fill="#BE185D">3%</text> |
| 155 | </g> |
| 156 | </g> |
| 157 | <!-- Stats Summary --> |
| 158 | <g id="summary" data-pptx-bounds="0 658 713 54" transform="translate(60, 665)"> |
| 159 | <g id="summary-male"> |
| 160 | <rect x="0" y="0" width="280" height="40" rx="8" fill="#EFF6FF" stroke="#3B82F6" stroke-width="1"/> |
| 161 | <text x="20" y="26" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 162 | font-size="14" fill="#1D4ED8">👨 Male Users: 52% | Avg Age: 34</text> |
| 163 | </g> |
| 164 | <g id="summary-female" transform="translate(300, 0)"> |
| 165 | <rect x="0" y="0" width="280" height="40" rx="8" fill="#FDF2F8" stroke="#EC4899" stroke-width="1"/> |
| 166 | <text x="20" y="26" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 167 | font-size="14" fill="#BE185D">👩 Female Users: 48% | Avg Age: 32</text> |
| 168 | </g> |
| 169 | </g> |
| 170 | <!-- Data Source --> |
| 171 | <g id="source" data-pptx-bounds="40 670 1200 40"> |
| 172 | <text x="1220" y="695" font-family="-apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif" |
| 173 | font-size="14" fill="#94A3B8" text-anchor="end">Data Source: User Data Analytics Platform</text> |
| 174 | </g> |
| 175 | </svg> |
| 176 |