Index: trunk/BNC/src/rinex/dopplot.cpp
===================================================================
--- trunk/BNC/src/rinex/dopplot.cpp	(revision 4685)
+++ trunk/BNC/src/rinex/dopplot.cpp	(revision 4686)
@@ -72,8 +72,20 @@
 
   enableAxis(QwtPlot::yRight);
-  setAxisTitle(QwtPlot::yLeft,  "# Sat");
-  setAxisTitle(QwtPlot::yRight, "PDOP");
+
+  QwtText textPDOP("PDOP");
+  QFont   fontPDOP = textPDOP.font();
+  fontPDOP.setPointSize(fontPDOP.pointSize()*0.8);
+  textPDOP.setFont(fontPDOP);
+  textPDOP.setColor(Qt::red);
+  setAxisTitle(QwtPlot::yRight, textPDOP);
+  setAxisScale(QwtPlot::yRight, 0,   6);
+
+  QwtText textNumSat("# Sat");
+  QFont   fontNumSat = textNumSat.font();
+  fontNumSat.setPointSize(fontNumSat.pointSize()*0.8);
+  textNumSat.setFont(fontNumSat);
+  textNumSat.setColor(Qt::blue);
+  setAxisTitle(QwtPlot::yLeft,  textNumSat);
   setAxisScale(QwtPlot::yLeft,  0,  20);
-  setAxisScale(QwtPlot::yRight, 0,   6);
 
   // Legend
@@ -86,16 +98,16 @@
   if (obsStat) {
 
-    QwtPlotCurve* curveNumSat = new QwtPlotCurve("# Sat");
+    QwtPlotCurve* curveNumSat = new QwtPlotCurve(textNumSat);
     curveNumSat->setXAxis(QwtPlot::xBottom);
     curveNumSat->setYAxis(QwtPlot::yLeft);
     curveNumSat->setSamples(obsStat->_mjdX24, obsStat->_numSat);
-    curveNumSat->setPen(QPen(Qt::blue));
+    curveNumSat->setPen(QPen(textNumSat.color()));
     curveNumSat->attach(this);
 
-    QwtPlotCurve* curvePDOP = new QwtPlotCurve("PDOP");
+    QwtPlotCurve* curvePDOP = new QwtPlotCurve(textPDOP);
     curvePDOP->setXAxis(QwtPlot::xBottom);
     curvePDOP->setYAxis(QwtPlot::yRight);
     curvePDOP->setSamples(obsStat->_mjdX24, obsStat->_PDOP);
-    curvePDOP->setPen(QPen(Qt::red));
+    curvePDOP->setPen(QPen(textPDOP.color()));
     curvePDOP->attach(this);
   }
