allow reactance only for reflection measurement, rename real/imag

This commit is contained in:
Jan Käberich 2021-10-12 17:43:36 +02:00
parent 604a51560c
commit 63cb5e4f67

View File

@ -789,8 +789,8 @@ QString TraceXYPlot::AxisTypeToName(TraceXYPlot::YAxisType type)
case YAxisType::Magnitude: return "Magnitude"; case YAxisType::Magnitude: return "Magnitude";
case YAxisType::Phase: return "Phase"; case YAxisType::Phase: return "Phase";
case YAxisType::VSWR: return "VSWR"; case YAxisType::VSWR: return "VSWR";
case YAxisType::Real: return "Real (R)"; case YAxisType::Real: return "Real";
case YAxisType::Imaginary: return "Imaginary (X)"; case YAxisType::Imaginary: return "Imaginary";
case YAxisType::SeriesR: return "Resistance"; case YAxisType::SeriesR: return "Resistance";
case YAxisType::Reactance: return "Reactance"; case YAxisType::Reactance: return "Reactance";
case YAxisType::Capacitance: return "Capacitance"; case YAxisType::Capacitance: return "Capacitance";
@ -862,6 +862,7 @@ bool TraceXYPlot::supported(Trace *t, TraceXYPlot::YAxisType type)
return false; return false;
case YAxisType::VSWR: case YAxisType::VSWR:
case YAxisType::SeriesR: case YAxisType::SeriesR:
case YAxisType::Reactance:
case YAxisType::Capacitance: case YAxisType::Capacitance:
case YAxisType::Inductance: case YAxisType::Inductance:
case YAxisType::QualityFactor: case YAxisType::QualityFactor: