You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.8 KiB
XML

1 week ago
<svg xmlns="http://www.w3.org/2000/svg" width="400" height="200" viewBox="0 0 400 200">
<defs>
<linearGradient id="chartBgGradient" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#F8F9FA;stop-opacity:1" />
<stop offset="100%" style="stop-color:#E9ECEF;stop-opacity:1" />
</linearGradient>
<pattern id="gridPattern" width="20" height="20" patternUnits="userSpaceOnUse">
<path d="M 20 0 L 0 0 0 20" fill="none" stroke="#DEE2E6" stroke-width="0.5" opacity="0.5"/>
</pattern>
</defs>
<!-- 背景 -->
<rect width="400" height="200" fill="url(#chartBgGradient)"/>
<!-- 网格 -->
<rect width="400" height="200" fill="url(#gridPattern)"/>
<!-- 装饰性图表元素 -->
<g opacity="0.1">
<!-- 柱状图 -->
<rect x="50" y="120" width="20" height="60" fill="#2196F3"/>
<rect x="80" y="100" width="20" height="80" fill="#4CAF50"/>
<rect x="110" y="140" width="20" height="40" fill="#FF9800"/>
<rect x="140" y="80" width="20" height="100" fill="#9C27B0"/>
<rect x="170" y="110" width="20" height="70" fill="#F44336"/>
<!-- 折线图 -->
<polyline points="220,150 250,120 280,140 310,100 340,130"
fill="none" stroke="#2196F3" stroke-width="3" opacity="0.6"/>
<!-- 数据点 -->
<circle cx="220" cy="150" r="3" fill="#2196F3"/>
<circle cx="250" cy="120" r="3" fill="#2196F3"/>
<circle cx="280" cy="140" r="3" fill="#2196F3"/>
<circle cx="310" cy="100" r="3" fill="#2196F3"/>
<circle cx="340" cy="130" r="3" fill="#2196F3"/>
</g>
<!-- 标题区域 -->
<rect x="10" y="10" width="380" height="30" fill="white" fill-opacity="0.8" rx="4"/>
<text x="20" y="28" font-family="Arial, sans-serif" font-size="14" font-weight="bold" fill="#333">数据统计分析</text>
</svg>