mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-01-23 00:50:20 +01:00
allow reactance only for reflection measurement, rename real/imag
This commit is contained in:
parent
604a51560c
commit
63cb5e4f67
|
|
@ -789,8 +789,8 @@ QString TraceXYPlot::AxisTypeToName(TraceXYPlot::YAxisType type)
|
|||
case YAxisType::Magnitude: return "Magnitude";
|
||||
case YAxisType::Phase: return "Phase";
|
||||
case YAxisType::VSWR: return "VSWR";
|
||||
case YAxisType::Real: return "Real (R)";
|
||||
case YAxisType::Imaginary: return "Imaginary (X)";
|
||||
case YAxisType::Real: return "Real";
|
||||
case YAxisType::Imaginary: return "Imaginary";
|
||||
case YAxisType::SeriesR: return "Resistance";
|
||||
case YAxisType::Reactance: return "Reactance";
|
||||
case YAxisType::Capacitance: return "Capacitance";
|
||||
|
|
@ -862,6 +862,7 @@ bool TraceXYPlot::supported(Trace *t, TraceXYPlot::YAxisType type)
|
|||
return false;
|
||||
case YAxisType::VSWR:
|
||||
case YAxisType::SeriesR:
|
||||
case YAxisType::Reactance:
|
||||
case YAxisType::Capacitance:
|
||||
case YAxisType::Inductance:
|
||||
case YAxisType::QualityFactor:
|
||||
|
|
|
|||
Loading…
Reference in a new issue