##// END OF EJS Templates
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash
Bug fix for bar presenters. It appears that order of childItems may change. Relying on order caused crash

File last commit:

r153:04be7b528347
r256:bd68fc4fe7ab
Show More
chartthemegrayscale_p.h
20 lines | 536 B | text/x-c | CLexer
/ src / themes / chartthemegrayscale_p.h
Michal Klocek
Refactor themes...
r143 #include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeGrayscale: public ChartTheme
{
public:
Michal Klocek
Adds missing ids to theme classes
r153 ChartThemeGrayscale():ChartTheme(QChart::ChartThemeGrayscale)
Michal Klocek
Refactor themes...
r143 {
m_seriesColor.append(QRgb(0xFF869299));
m_seriesColor.append(QRgb(0xFFA5BDCC));
m_seriesColor.append(QRgb(0xFFE8FFFC));
m_seriesColor.append(QRgb(0xFFCCC2C2));
m_gradientStartColor = QColor(QRgb(0xffffffff));
m_gradientEndColor = QColor(QRgb(0xffafafaf));
}
};
QTCOMMERCIALCHART_END_NAMESPACE