Changeset 4686 in ntrip


Ignore:
Timestamp:
Sep 9, 2012, 12:12:17 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4685 r4686  
    7272
    7373  enableAxis(QwtPlot::yRight);
    74   setAxisTitle(QwtPlot::yLeft,  "# Sat");
    75   setAxisTitle(QwtPlot::yRight, "PDOP");
     74
     75  QwtText textPDOP("PDOP");
     76  QFont   fontPDOP = textPDOP.font();
     77  fontPDOP.setPointSize(fontPDOP.pointSize()*0.8);
     78  textPDOP.setFont(fontPDOP);
     79  textPDOP.setColor(Qt::red);
     80  setAxisTitle(QwtPlot::yRight, textPDOP);
     81  setAxisScale(QwtPlot::yRight, 0,   6);
     82
     83  QwtText textNumSat("# Sat");
     84  QFont   fontNumSat = textNumSat.font();
     85  fontNumSat.setPointSize(fontNumSat.pointSize()*0.8);
     86  textNumSat.setFont(fontNumSat);
     87  textNumSat.setColor(Qt::blue);
     88  setAxisTitle(QwtPlot::yLeft,  textNumSat);
    7689  setAxisScale(QwtPlot::yLeft,  0,  20);
    77   setAxisScale(QwtPlot::yRight, 0,   6);
    7890
    7991  // Legend
     
    8698  if (obsStat) {
    8799
    88     QwtPlotCurve* curveNumSat = new QwtPlotCurve("# Sat");
     100    QwtPlotCurve* curveNumSat = new QwtPlotCurve(textNumSat);
    89101    curveNumSat->setXAxis(QwtPlot::xBottom);
    90102    curveNumSat->setYAxis(QwtPlot::yLeft);
    91103    curveNumSat->setSamples(obsStat->_mjdX24, obsStat->_numSat);
    92     curveNumSat->setPen(QPen(Qt::blue));
     104    curveNumSat->setPen(QPen(textNumSat.color()));
    93105    curveNumSat->attach(this);
    94106
    95     QwtPlotCurve* curvePDOP = new QwtPlotCurve("PDOP");
     107    QwtPlotCurve* curvePDOP = new QwtPlotCurve(textPDOP);
    96108    curvePDOP->setXAxis(QwtPlot::xBottom);
    97109    curvePDOP->setYAxis(QwtPlot::yRight);
    98110    curvePDOP->setSamples(obsStat->_mjdX24, obsStat->_PDOP);
    99     curvePDOP->setPen(QPen(Qt::red));
     111    curvePDOP->setPen(QPen(textPDOP.color()));
    100112    curvePDOP->attach(this);
    101113  }
Note: See TracChangeset for help on using the changeset viewer.