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.
26 lines
485 B
C
26 lines
485 B
C
|
1 month ago
|
#pragma once
|
||
|
|
#ifndef LineChart_h__
|
||
|
|
#define LineChart_h__
|
||
|
|
#include "ChartConcrete.h"
|
||
|
|
|
||
|
|
namespace NChart
|
||
|
|
{
|
||
|
|
|
||
|
|
class AFX_EXT_CLASS CLineChart :
|
||
|
|
public CChartConcrete
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CLineChart(CChartObjectProxy * pProxyObject=NULL);
|
||
|
|
virtual ~CLineChart(void);
|
||
|
|
virtual void Draw(CXyDC &dc);
|
||
|
|
virtual void Accept(CChartAbstractVisitor *pVisitor);
|
||
|
|
protected:
|
||
|
|
virtual void Layout();
|
||
|
|
virtual void CreateLegend();
|
||
|
|
virtual void CreateAxis();
|
||
|
|
};
|
||
|
|
|
||
|
|
}//namespace
|
||
|
|
|
||
|
|
|
||
|
|
#endif // LineChart_h__
|