Index: trunk/BNC/src/rinex/eleplot.cpp
===================================================================
--- trunk/BNC/src/rinex/eleplot.cpp	(revision 4664)
+++ trunk/BNC/src/rinex/eleplot.cpp	(revision 4665)
@@ -42,4 +42,5 @@
 #include <qwt_text.h>
 #include <qwt_legend.h>
+#include <qwt_plot_marker.h>
 
 #include "eleplot.h"
@@ -118,4 +119,16 @@
   curve->setSamples(xData, yData);
   curve->attach(this);
+
+  if (xData.size() > 0 && yData.size() > 0) {
+    QwtPlotMarker* marker = new QwtPlotMarker();
+    int ii = xData.size() / 2;
+    marker->setValue(xData[ii], yData[ii]);
+    QwtText text(name);
+    text.setColor(symbol.pen().color());
+    marker->setLabel(text);
+    marker->setLabelAlignment(Qt::AlignTop);
+    marker->attach(this);
+  }
+
   return curve;
 }
