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.

88 lines
3.2 KiB
C++

// XTPChartRadarDiagramSeriesStyle.h
//
// This file is a part of the XTREME TOOLKIT PRO MFC class library.
// (c)1998-2012 Codejock Software, All Rights Reserved.
//
// THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
// RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
// CONSENT OF CODEJOCK SOFTWARE.
//
// THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
// IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
// YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
// SINGLE COMPUTER.
//
// CONTACT INFORMATION:
// support@codejock.com
// http://www.codejock.com
//
/////////////////////////////////////////////////////////////////////////////
//{{AFX_CODEJOCK_PRIVATE
#if !defined(__XTPCHARTRADARDIAGRAMSERIESSTYLE_H__)
#define __XTPCHARTRADARDIAGRAMSERIESSTYLE_H__
//}}AFX_CODEJOCK_PRIVATE
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
class CXTPChartSeriesView;
class CXTPChartMarker;
//===========================================================================
// Summary:
// This class represents a base radar series style, which is a kind of
// CXTPChartSeriesStyle.
// Remarks:
// A point chart is a type of graph, which displays information as a
// series of data points.It is a basic type of chart common in many
// fields.
//===========================================================================
class _XTP_EXT_CLASS CXTPChartRadarDiagramSeriesStyle : public CXTPChartSeriesStyle
{
DECLARE_DYNAMIC(CXTPChartRadarDiagramSeriesStyle)
public:
//-----------------------------------------------------------------------
// Summary:
// Constructs a CXTPChartRadarDiagramSeriesStyle object.
// Remarks:
//-----------------------------------------------------------------------
CXTPChartRadarDiagramSeriesStyle();
//-------------------------------------------------------------------------
// Summary:
// Destroys a CXTPChartRadarDiagramSeriesStyle object, handles cleanup
//-------------------------------------------------------------------------
virtual ~CXTPChartRadarDiagramSeriesStyle();
public:
void DoPropExchange(CXTPPropExchange* pPX);
public:
//-----------------------------------------------------------------------
// Summary:
// Call this function to create the diagram for this series.
// Returns:
// A pointer to CXTPChartDiagram2D object, which is a kind of CXTPChartDiagram.
// Remarks:
//-----------------------------------------------------------------------
virtual CXTPChartDiagram* CreateDiagram();
//-----------------------------------------------------------------------
// Summary:
// Call this function to check whether chart diagram object passed
// is a kind of 2D diagram(CXTPChartDiagram2D object).
// Parameters:
// pDiagram - A pointer to a chart diagram, whose type is to be identified.
// Returns:
// TRUE if the chart diagram is a 2D diagram and FALSE if not.
// Remarks:
//-----------------------------------------------------------------------
virtual BOOL IsStyleDiagram(CXTPChartDiagram* pDiagram) const;
};
#endif //#if !defined(__XTPCHARTRADARDIAGRAMSERIESSTYLE_H__)