##// 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
chartthemescientific_p.h
20 lines | 539 B | text/x-c | CLexer
/ src / themes / chartthemescientific_p.h
#include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeScientific: public ChartTheme
{
public:
ChartThemeScientific():ChartTheme(QChart::ChartThemeScientific)
{
m_seriesColor.append(QRgb(0xFF000000));
m_seriesColor.append(QRgb(0xFFFFAD00));
m_seriesColor.append(QRgb(0xFF596A75));
m_seriesColor.append(QRgb(0xFF474747));
m_gradientStartColor = QColor(QRgb(0xffafafaf));
m_gradientEndColor = QColor(QRgb(0xffafafaf));
}
};
QTCOMMERCIALCHART_END_NAMESPACE