- Timestamp:
- Aug 29, 2012, 7:07:25 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/rinex/availplot.cpp
r4588 r4589 41 41 // ---- 42 42 setAxisScaleDraw(QwtPlot::xBottom, new t_scaleDrawTime()); 43 setAxisLabelRotation(QwtPlot::xBottom, - 50.0);43 setAxisLabelRotation(QwtPlot::xBottom, -10.0); 44 44 setAxisLabelAlignment(QwtPlot::xBottom, Qt::AlignLeft | Qt::AlignBottom); 45 45 … … 81 81 QList<double> ticks[QwtScaleDiv::NTickTypes]; 82 82 QList<double> &majorTicks = ticks[QwtScaleDiv::MajorTick]; 83 for (int iPrn = 1; iPrn <= 32; iPrn++) { 84 majorTicks << iPrn; 83 QMapIterator<int, QString> itT(scaleDrawPrn->_yLabels); 84 while (itT.hasNext()) { 85 itT.next(); 86 majorTicks << double(itT.key()); 85 87 } 86 88 QwtScaleDiv yScaleDiv(majorTicks.first()-0.5, majorTicks.last()+0.5, ticks );
Note:
See TracChangeset
for help on using the changeset viewer.