Click here to Skip to main content
15,895,799 members
Articles / Web Development / HTML

2D Graph ActiveX Control in C++ with ATL (No MFC Dependency)

Rate me:
Please Sign up or sign in to vote.
4.92/5 (25 votes)
8 Mar 2012CPOL7 min read 123.4K   11.9K   93  
Plots multiple data sets, interactive tooltip info, zoom/pan, edit color/width/format, annotations, print/save
/////////////////////////////////////////////////////////////////////////////
// (c) Copyright The Code Project Open License (CPOL)
//  http://www.codeproject.com/info/cpol10.aspx
//
//  Marius Samoila, Nikolai Teofilov, 2011
//
// FILE NAME
//		PropPageBaseWnd.h: Declaration of the CPropPageBaseWnd class
//
// CLASS NAME
//		CPropPageBaseWnd
//
// DESCRIPTION
// 
// MODIFICATIONS
//		01-Dec-2011 MSamoila created
//


#if !defined(AFX_PROPPAGEBASEWND_H__72038DCC_2019_40FA_B5CD_5A9D4F15156F__INCLUDED_)
#define AFX_PROPPAGEBASEWND_H__72038DCC_2019_40FA_B5CD_5A9D4F15156F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CPropPageBaseWnd : public CWindow  
{
public:
	HRESULT InitCollectionList(IDMGraphCollection* pGraphCollection);
	HRESULT AppendNewItem(IDMGraphCollection* pGraphCollection);
	HRESULT DeleteItem(IDMGraphCollection* pGraphCollection);
	HRESULT RemoveSelection(IDMGraphCollection* pGraphCollection);
};

#endif // !defined(AFX_PROPPAGEBASEWND_H__72038DCC_2019_40FA_B5CD_5A9D4F15156F__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Canada Canada

Comments and Discussions