🎯
Pure SVG
Every element is a native SVG shape. Scale to any size, style with CSS, and inspect with browser devtools.
Plot impedance, VSWR, resistance circles, and reactance arcs as reactive SVG — no canvas, no dependencies.
Drag the sliders to move the impedance point. The VSWR circle and constant-resistance circle update in real time.
npm install vue-smith-chart// Register globally
import VueSmithChart from 'vue-smith-chart'
app.use(VueSmithChart)<!-- Use anywhere -->
<SmithChart>
<SmPoint :res="1.2" :react="0.8" fill="#42b883" />
<SmVswrCircle :res="1.2" :react="0.8" stroke="#42b883" />
</SmithChart>