|
44 | 44 | Shape="Circle"> |
45 | 45 | </SmithchartLegendSettings> |
46 | 46 | <SmithchartSeriesCollection> |
47 | | - <SmithchartSeries Name="Transmission1" Points='@FirstTransmissionData' |
| 47 | + <SmithchartSeries Name="Transmission1" Points='@firstTransmissionData' |
48 | 48 | EnableAnimation='true'> |
49 | 49 | <SmithchartSeriesTooltip Visible='true' ></SmithchartSeriesTooltip> |
50 | 50 | <SmithchartSeriesMarker Visible='true' Shape='Circle'> |
51 | 51 | <SmithchartSeriesMarkerBorder Width='2'> |
52 | 52 | </SmithchartSeriesMarkerBorder> |
53 | 53 | </SmithchartSeriesMarker> |
54 | 54 | </SmithchartSeries> |
55 | | - <SmithchartSeries Name="Transmission2" Points='@SecondTransmissionData' |
| 55 | + <SmithchartSeries Name="Transmission2" Points='@secondTransmissionData' |
56 | 56 | EnableAnimation='true'> |
57 | 57 | <SmithchartSeriesTooltip Visible='true' ></SmithchartSeriesTooltip> |
58 | 58 | <SmithchartSeriesMarker Visible='true' Shape='Circle'> |
|
92 | 92 | public double resistance; |
93 | 93 | public double reactance; |
94 | 94 | }; |
95 | | - public List<SmithDataSource> FirstTransmissionData = new List<SmithDataSource> { |
| 95 | + public List<SmithDataSource> firstTransmissionData = new List<SmithDataSource> { |
96 | 96 | new SmithDataSource { resistance= 10, reactance= 25 }, new SmithDataSource { resistance= 8, reactance= 6 }, |
97 | 97 | new SmithDataSource { resistance= 6, reactance= 4.5 }, new SmithDataSource { resistance= 4.5, reactance= 2 }, |
98 | 98 | new SmithDataSource { resistance= 3.5, reactance= 1.6 }, new SmithDataSource { resistance= 2.5, reactance= 1.3 }, |
99 | 99 | new SmithDataSource { resistance= 2, reactance= 1.2 }, new SmithDataSource { resistance= 1.5, reactance= 1 }, |
100 | 100 | new SmithDataSource { resistance= 1, reactance= 0.8 }, new SmithDataSource { resistance= 0.5, reactance= 0.4 }, |
101 | 101 | new SmithDataSource { resistance= 0.3, reactance= 0.2 }, new SmithDataSource { resistance= 0.001, reactance= 0.15 }, |
102 | 102 | }; |
103 | | - public List<SmithDataSource> SecondTransmissionData = new List<SmithDataSource> { |
| 103 | + public List<SmithDataSource> secondTransmissionData = new List<SmithDataSource> { |
104 | 104 | new SmithDataSource { resistance= 20, reactance= -50 }, new SmithDataSource { resistance= 10, reactance= -10 }, |
105 | 105 | new SmithDataSource { resistance= 9, reactance= -4.5 }, new SmithDataSource { resistance= 8, reactance= -3.5 }, |
106 | 106 | new SmithDataSource { resistance= 7, reactance= -2.5 }, new SmithDataSource{ resistance= 6, reactance= -1.5 }, |
|
0 commit comments