mirror of
https://github.com/python-LimeReport/LimeReport.git
synced 2025-10-01 19:51:31 +03:00
Fix setting manual step to be float
This commit is contained in:
@@ -805,9 +805,9 @@ void AbstractSeriesChart::updateMinAndMaxValues()
|
||||
}
|
||||
|
||||
qreal maxYValue = 0;
|
||||
qreal minYValue = 0;
|
||||
qreal minYValue = std::numeric_limits<qreal>::max();
|
||||
qreal maxXValue = 0;
|
||||
qreal minXValue = 0;
|
||||
qreal minXValue = std::numeric_limits<qreal>::max();
|
||||
|
||||
for (SeriesItem* series : m_chartItem->series()){
|
||||
for (qreal value : series->data()->values()){
|
||||
|
Reference in New Issue
Block a user