##// END OF EJS Templates
barseries scaledomain fix
sauimone -
r1376:7989ebf68fe8
parent child
Show More
@@ -499,7 +499,7 void QBarSeriesPrivate::scaleDomain(Domain& domain)
499 499 qreal y = max();
500 500 minX = qMin(minX, x) - 0.5;
501 501 minY = qMin(minY, y);
502 maxX = qMax(maxX, x) - 0.5;
502 maxX = qMax(maxX, x) + 0.5;
503 503 maxY = qMax(maxY, y);
504 504 tickXCount = x+1;
505 505
General Comments 0
You need to be logged in to leave comments. Login now