You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kev/Drawer/SSBase/PlatBase/StackedAreaChart.h

29 lines
633 B
C++

#pragma once
#ifndef StackedAreaChart_h__
#define StackedAreaChart_h__
#include "chartconcrete.h"
namespace NChart
{
class CStackedAreaChart :
public CChartConcrete
{
public:
CStackedAreaChart(CChartObjectProxy * pProxyObject=NULL);
virtual ~CStackedAreaChart(void);
virtual void Draw(CXyDC &dc);
virtual void Accept(CChartAbstractVisitor *pVisitor);
protected:
virtual void Layout();
virtual void CreateLegend();
virtual void CreateAxis();
vector<double> m_vecFirst;
vector<double> m_vecSecond;
vector<CPoint2D> m_vecPloy;
CChartDataSet m_axisDataSet;
};
}//namespace
#endif // StackedAreaChart_h__