Skip to content

Commit 7a4eab7

Browse files
committed
Fix the spacing between boundary circle and angle labels
1 parent 91055fc commit 7a4eab7

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/app/dialog/plotdata.cpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,7 @@ void PlotData::CreateRadialGrid(QCustomPlot *customPlot, bool flagLinearLog)
11761176

11771177
QPen majorGridPen(Qt::black, 1.0, Qt::SolidLine);
11781178
QPen minorGridPen(Qt::gray, 0.5, Qt::SolidLine);
1179-
double labelRadius = radialMax * 1.15;
1179+
double labelRadius = radialMax * 1.17;
11801180
int numLines = 36;
11811181
double angleStep = 10;
11821182

@@ -1217,12 +1217,6 @@ void PlotData::HideCartesianAxes(QCustomPlot *customPlot)
12171217
customPlot->yAxis->setTicks(false);
12181218
}
12191219

1220-
1221-
1222-
1223-
1224-
1225-
12261220
//Remove QCustomPlot graphs
12271221
void PlotData::RemoveGraphs(QCustomPlot *customPlot)
12281222
{

0 commit comments

Comments
 (0)