SVG Chart

by Ritesh Pandey

HTML

<div id="chartWrap">
    <svg width="100" 
    height="100" 
    version="1.1" 
    xmlns="http://www.w3.org/2000/svg">
        <rect width="100%" height="100%" fill="lightgray" />
        <rect x="30" y="60" width="20" height="60" fill="blue" />
        <rect x="60" y="40" width="20" height="160" fill="blue" />
    </svg>
</div>