Changeset 4684 in ntrip
- Timestamp:
- Sep 9, 2012, 11:58:27 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/dopplot.cpp
r4683 r4684 71 71 setAxisLabelAlignment(QwtPlot::xBottom, Qt::AlignLeft | Qt::AlignBottom); 72 72 73 enableAxis(QwtPlot::yRight); 74 setAxisTitle(QwtPlot::yLeft, "# Sat"); 75 setAxisTitle(QwtPlot::yRight, "PDOP"); 76 setAxisScale(QwtPlot::yLeft, 0, 20); 77 setAxisScale(QwtPlot::yRight, 0, 10); 78 73 79 // Legend 74 80 // ------ … … 82 88 QwtPlotCurve* curveNumSat = new QwtPlotCurve("# Sat"); 83 89 curveNumSat->setXAxis(QwtPlot::xBottom); 84 curveNumSat->setYAxis(QwtPlot::y Right);90 curveNumSat->setYAxis(QwtPlot::yLeft); 85 91 curveNumSat->setSamples(obsStat->_mjdX24, obsStat->_numSat); 86 92 curveNumSat->attach(this); … … 88 94 QwtPlotCurve* curvePDOP = new QwtPlotCurve("PDOP"); 89 95 curvePDOP->setXAxis(QwtPlot::xBottom); 90 curvePDOP->setYAxis(QwtPlot::y Left);96 curvePDOP->setYAxis(QwtPlot::yRight); 91 97 curvePDOP->setSamples(obsStat->_mjdX24, obsStat->_PDOP); 92 98 curvePDOP->attach(this);
Note:
See TracChangeset
for help on using the changeset viewer.