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.
29 lines
633 B
C
29 lines
633 B
C
|
1 month ago
|
#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__
|