12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #if !defined(AFX_VCSERIES_H__FA71D755_3010_4600_82A5_0B0C815E8E1B__INCLUDED_)
- #define AFX_VCSERIES_H__FA71D755_3010_4600_82A5_0B0C815E8E1B__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- #include "vcpen.h"
- #include "vcseriesposition.h"
- #include "vcseriesmarker.h"
- #include "vcstatline.h"
- #include "vcdatapoints.h"
- class CVcSeries : public COleDispatchDriver
- {
- public:
- CVcSeries() {}
- CVcSeries(LPDISPATCH pDispatch) : COleDispatchDriver(pDispatch) {}
- CVcSeries(const CVcSeries& dispatchSrc) : COleDispatchDriver(dispatchSrc) {}
- public:
- public:
- BOOL GetSecondaryAxis();
- void SetSecondaryAxis(BOOL bNewValue);
- long GetSeriesType();
- void SetSeriesType(long nNewValue);
- CVcPen GetGuideLinePen();
- BOOL GetShowLine();
- void SetShowLine(BOOL bNewValue);
- CVcPen GetPen();
- CVcSeriesPosition GetPosition();
- CVcSeriesMarker GetSeriesMarker();
- CVcStatLine GetStatLine();
- CVcDataPoints GetDataPoints();
- CString GetLegendText();
- void SetLegendText(LPCTSTR lpszNewValue);
- void Select();
- BOOL GetShowGuideLine(long axisID);
- void SetShowGuideLine(long axisID, BOOL bNewValue);
- long GetTypeByChartType(long chartType);
- };
- #endif
|