Vietove sarme
Kvadratne funkcije
<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg">
<title>Stupčasti graf</title>
<!-- Pozadina -->
<rect x="50" y="50" width="200" height="200" fill="#eee" />
<!-- Osi -->
<line x1="50" y1="50" x2="50" y2="250" stroke="black" />
<text x="45" y="50" text-anchor="end">2000</text>
<text x="45" y="100" text-anchor="end">1500</text>
<text x="45" y="150" text-anchor="end">1000</text>
<text x="45" y="200" text-anchor="end">500</text>
<text x="45" y="250" text-anchor="end">0</text>
<line x1="50" y1="250" x2="250" y2="250" stroke="black" />
<!-- Stupci s različitim visinama -->
<g transform="translate(75, 250)">
<!-- Prvi stupac -->
<rect x="0" y="-875" width="30" height="875" fill="steelblue" />
<text x="15" y="20" text-anchor="middle">Ime 1</text>
</g>
<g transform="translate(125, 250)">
<!-- Drugi stupac -->
<rect x="0" y="-1350" width="30" height="1350" fill="orange" />
<text x="15" y="20" text-anchor="middle">Ime 2</text>
</g>
<g transform="translate(175, 250)">
<!-- Treći stupac -->
<rect x="0" y="-1100" width="30" height="1100" fill="green" />
<text x="15" y="20" text-anchor="middle">Ime 3</text>
</g>
</svg>