Changeset 4684 in ntrip


Ignore:
Timestamp:
Sep 9, 2012, 11:58:27 AM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/rinex/dopplot.cpp

    r4683 r4684  
    7171  setAxisLabelAlignment(QwtPlot::xBottom, Qt::AlignLeft | Qt::AlignBottom);
    7272
     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
    7379  // Legend
    7480  // ------
     
    8288    QwtPlotCurve* curveNumSat = new QwtPlotCurve("# Sat");
    8389    curveNumSat->setXAxis(QwtPlot::xBottom);
    84     curveNumSat->setYAxis(QwtPlot::yRight);
     90    curveNumSat->setYAxis(QwtPlot::yLeft);
    8591    curveNumSat->setSamples(obsStat->_mjdX24, obsStat->_numSat);
    8692    curveNumSat->attach(this);
     
    8894    QwtPlotCurve* curvePDOP = new QwtPlotCurve("PDOP");
    8995    curvePDOP->setXAxis(QwtPlot::xBottom);
    90     curvePDOP->setYAxis(QwtPlot::yLeft);
     96    curvePDOP->setYAxis(QwtPlot::yRight);
    9197    curvePDOP->setSamples(obsStat->_mjdX24, obsStat->_PDOP);
    9298    curvePDOP->attach(this);
Note: See TracChangeset for help on using the changeset viewer.