##// END OF EJS Templates
Adds default gemoetry change call in case of new series
Adds default gemoetry change call in case of new series

File last commit:

r143:a0c24bcedc00
r148:38a3d03baaf6
Show More
chartthemeicy_p.h
20 lines | 484 B | text/x-c | CLexer
#include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeIcy: public ChartTheme
{
public:
ChartThemeIcy()
{
m_seriesColor.append(QRgb(0xFF0D2673));
m_seriesColor.append(QRgb(0xFF2685BF));
m_seriesColor.append(QRgb(0xFF3DADD9));
m_seriesColor.append(QRgb(0xFF62C3D9));
m_gradientStartColor = QColor(QRgb(0xffBDE3F2));
m_gradientEndColor = QColor(QRgb(0xffafafaf));
}
};
QTCOMMERCIALCHART_END_NAMESPACE