##// END OF EJS Templates
Block opengl series from being used as areaseries edges...
Miikka Heikkinen -
r2840:8f5b72388cbe
parent child
Show More
@@ -361,6 +361,10 QT_CHARTS_BEGIN_NAMESPACE
361 361 QAreaSeries::QAreaSeries(QLineSeries *upperSeries, QLineSeries *lowerSeries)
362 362 : QAbstractSeries(*new QAreaSeriesPrivate(upperSeries, lowerSeries, this), upperSeries)
363 363 {
364 if (upperSeries)
365 upperSeries->d_ptr->setBlockOpenGL(true);
366 if (lowerSeries)
367 lowerSeries->d_ptr->setBlockOpenGL(true);
364 368 }
365 369
366 370 /*!
General Comments 0
You need to be logged in to leave comments. Login now