/** * @file XTPChartRadarDiagramSeriesStyle.h * * @copyright * (c) 1998-2025 Codejock Software, All Rights Reserved. * * This source file is the property of Codejock Software and must not be * redistributed by any means without the explicit written permission of * Codejock Software. * * The use of this source code is governed by the terms and conditions specified * in the Toolkit Pro license agreement. Codejock Software grants you, as a * single software developer, the limited right to use this software on one * computer only. * * Contact Information: * support@codejock.com * http://www.codejock.com * */ /** @cond */ #if !defined(__XTPCHARTRADARDIAGRAMSERIESSTYLE_H__) # define __XTPCHARTRADARDIAGRAMSERIESSTYLE_H__ /** @endcond */ # if _MSC_VER >= 1000 # pragma once # endif // _MSC_VER >= 1000 # include "Common/Base/Diagnostic/XTPDisableNoisyWarnings.h" class CXTPChartSeriesView; class CXTPChartMarker; /** * @brief * This class represents a base radar series style, which is a kind of * CXTPChartSeriesStyle. * * @details * 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 { /** @cond */ DECLARE_DYNAMIC(CXTPChartRadarDiagramSeriesStyle) /** @endcond */ public: /** * @brief * Constructs a CXTPChartRadarDiagramSeriesStyle object. */ CXTPChartRadarDiagramSeriesStyle(); /** * @brief * Destroys a CXTPChartRadarDiagramSeriesStyle object, handles cleanup. */ virtual ~CXTPChartRadarDiagramSeriesStyle(); public: void DoPropExchange(CXTPPropExchange* pPX); public: /** * @brief * Call this function to create the diagram for this series. * * @return A pointer to a CXTPChartDiagram object which points to the newly created * CXTPChartDiagram2D object. */ virtual CXTPChartDiagram* CreateDiagram(); /** * @brief * Call this function to check whether the chart diagram object passed * is a kind of 2D diagram (CXTPChartDiagram2D object). * * @param pDiagram A pointer to a chart diagram whose type is to be identified. * * @return A BOOL value. TRUE if the chart diagram object passed is a 2D diagram, * FALSE otherwise. */ virtual BOOL IsStyleDiagram(CXTPChartDiagram* pDiagram) const; }; /** @cond */ # include "Common/Base/Diagnostic/XTPEnableNoisyWarnings.h" #endif //#if !defined(__XTPCHARTRADARDIAGRAMSERIESSTYLE_H__) /** @endcond */