Changeset 4668 in ntrip for trunk/BNC/src/rinex/availplot.cpp


Ignore:
Timestamp:
Sep 8, 2012, 6:29:05 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r4667 r4668  
    215215void t_availPlot::setNumSat(const QVector<double>& _numSatTim,
    216216                            const QVector<double>& _numSat) {
     217  QwtPlotCurve* curve = new QwtPlotCurve("# sat");
     218  curve->setXAxis(QwtPlot::xBottom);
     219  curve->setYAxis(QwtPlot::yRight);
     220  curve->setSamples(_numSatTim, _numSat);
     221  curve->attach(this);
    217222}
Note: See TracChangeset for help on using the changeset viewer.