Rendering Type in WPF Smith Chart (SfSmithChart)

18 Nov 20181 minute to read

SfSmithChart plots the transmission line in two different ways by using the RenderingType property. The two ways are given below.

Impedance

In the impedance smith chart, normalized resistance circles and normalized reactance curves are drawn from right to left. Axis label ranges start from left to right.

Impedance is the default rendering type of SmithChart.

<syncfusion:SfSmithChart RenderingType="Impedance">
            
</syncfusion:SfSmithChart>
SfSmithChart chart = new SfSmithChart();
chart.RenderingType = RenderingType.Impedance;

SmithChart Impedance Chart

Admittance

In the admittance smith chart, normalized resistance circles and normalized reactance curves are drawn from left to right. Axis label ranges start from right to left.

<syncfusion:SfSmithChart RenderingType="Admittance">
            
</syncfusion:SfSmithChart>
SfSmithChart chart = new SfSmithChart();
chart.RenderingType = RenderingType.Admittance;

SmithChart Admittance Chart