##// END OF EJS Templates
Linechartitem fix: drawing points
Marek Rosa -
r2259:8bb0a5119ae2
parent child
Show More
@@ -73,6 +73,7 void LineChartItem::updateGeometry()
73 for (int i = 1; i < m_points.size(); i++) {
73 for (int i = 1; i < m_points.size(); i++) {
74 linePath.lineTo(m_points.at(i));
74 linePath.lineTo(m_points.at(i));
75 linePath.addEllipse(m_points.at(i), size, size);
75 linePath.addEllipse(m_points.at(i), size, size);
76 linePath.moveTo(m_points.at(i));
76 }
77 }
77
78
78 } else {
79 } else {
General Comments 0
You need to be logged in to leave comments. Login now