##// END OF EJS Templates
Fix sctter series wrong points offset issue
Fix sctter series wrong points offset issue

File last commit:

r526:8593b87d6899
r536:79d5184b167f
Show More
chartthemeicy_p.h
25 lines | 722 B | text/x-c | CLexer
#include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeIcy: public ChartTheme
{
public:
ChartThemeIcy():ChartTheme(QChart::ChartThemeIcy)
{
m_seriesColors << QRgb(0xff0d2673);
m_seriesColors << QRgb(0xff2685bf);
m_seriesColors << QRgb(0xff3dadd9);
m_seriesColors << QRgb(0xff62c3d9);
generateSeriesGradients();
QLinearGradient backgroundGradient;
backgroundGradient.setColorAt(0.0, QRgb(0xffebebeb));
backgroundGradient.setColorAt(1.0, QRgb(0xfff8f9fb));
backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_backgroundGradient = backgroundGradient;
}
};
QTCOMMERCIALCHART_END_NAMESPACE