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.
114 lines
3.8 KiB
C++
114 lines
3.8 KiB
C++
// XTPChartRangeBarSeriesStyle.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(__XTPCHARTRANGEBARSERIESSTYLE_H__)
|
|
#define __XTPCHARTRANGEBARSERIESSTYLE_H__
|
|
//}}AFX_CODEJOCK_PRIVATE
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
class CXTPChartSeriesView;
|
|
|
|
|
|
//===========================================================================
|
|
// Summary:
|
|
// This class represents a RangeBar series style for the chart,which is a kind of
|
|
// CXTPChartBarSeriesStyle.
|
|
// Remarks:
|
|
// A RangeBar chart or RangeBar graph is a chart with rectangular RangeBars with lengths
|
|
// proportional to the values that they represent. RangeBar charts are used for
|
|
// comparing two or more values that were taken over time or on different
|
|
// conditions, usually on small data sets.
|
|
//===========================================================================
|
|
class _XTP_EXT_CLASS CXTPChartRangeBarSeriesStyle : public CXTPChartBarSeriesStyle
|
|
{
|
|
DECLARE_SERIAL(CXTPChartRangeBarSeriesStyle)
|
|
public:
|
|
//-----------------------------------------------------------------------
|
|
// Summary:
|
|
// Constructs a CXTPChartRangeBarSeriesStyle object.
|
|
// Remarks:
|
|
//-----------------------------------------------------------------------
|
|
CXTPChartRangeBarSeriesStyle();
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Summary:
|
|
// Destroys a CXTPChartRangeBarSeriesStyle object, handles cleanup.
|
|
//-------------------------------------------------------------------------
|
|
virtual ~CXTPChartRangeBarSeriesStyle();
|
|
|
|
public:
|
|
CXTPChartMarker* GetMinValueMarker() const;
|
|
CXTPChartMarker* GetMaxValueMarker() const;
|
|
|
|
|
|
protected:
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Summary:
|
|
// Call this function to create the view of the RangeBar series.
|
|
// Parameters:
|
|
// pSeries - A pointer to the chart series object, to which this object
|
|
// is associated with.
|
|
// pDiagramView - A pointer to the chart diagram view object, to which this object
|
|
// is associated with.
|
|
// Returns:
|
|
// A pointer to CXTPChartSeriesView, refers a newly created CXTPChartRangeBarSeriesView
|
|
// object.
|
|
//-------------------------------------------------------------------------
|
|
virtual CXTPChartSeriesView* CreateView(CXTPChartSeries* pSeries, CXTPChartDiagramView* pDiagramView);
|
|
|
|
public:
|
|
void DoPropExchange(CXTPPropExchange* pPX);
|
|
|
|
|
|
protected:
|
|
CXTPChartMarker* m_pMinValueMarker;
|
|
CXTPChartMarker* m_pMaxValueMarker;
|
|
|
|
protected:
|
|
|
|
#ifdef _XTP_ACTIVEX
|
|
public:
|
|
//{{AFX_CODEJOCK_PRIVATE
|
|
DECLARE_DISPATCH_MAP()
|
|
DECLARE_INTERFACE_MAP()
|
|
DECLARE_OLETYPELIB_EX(CXTPChartRangeBarSeriesStyle);
|
|
DECLARE_OLECREATE_EX(CXTPChartRangeBarSeriesStyle);
|
|
|
|
afx_msg LPDISPATCH OleGetMinValueMarker();
|
|
afx_msg LPDISPATCH OleGetMaxValueMarker();
|
|
|
|
//}}AFX_CODEJOCK_PRIVATE
|
|
#endif
|
|
};
|
|
|
|
AFX_INLINE CXTPChartMarker* CXTPChartRangeBarSeriesStyle::GetMinValueMarker() const {
|
|
return m_pMinValueMarker;
|
|
}
|
|
AFX_INLINE CXTPChartMarker* CXTPChartRangeBarSeriesStyle::GetMaxValueMarker() const {
|
|
return m_pMaxValueMarker;
|
|
}
|
|
|
|
#endif //#if !defined(__XTPCHARTRANGEBARSERIESSTYLE_H__)
|