饼图控件


日期: 2002-01-02 14:00 | 联系我
关注我: Telegram, Twitter

本控件用于绘制饼图,其为从CWnd派生的CPieChartCtrl,参见下图。

使用步骤如下:

1. 使用MS Visual C++对话框编辑器将定制控件放置到对话框中,并输入PIE_CHART_CTRL作为类名。

2. 在头文件中增加CPieChartCtrl类成员

#include "PieChartCtrl.h" ... CPieChartCtrl m_wndChart;

3. 在InitDialog()中调用下面函数:

m_wndChart.SubclassDlgItem(IDC_PIECHART1, this); //IDC_PIECHART1 is the control ID

4. 使用下面函数来编辑饼图:

// SetTitle(CString) - Set the chart title text m_wndChart.SetTitle("Chart Title"); // Reset() - Reset the chart and delete all pieces m_wndChart.Reset(); // AddPiece(COLORREF colorBack, COLORREF colorText, // int nAngle, int strInfo = ""); // Add one piece into the chart m_wndChart.AddPiece(colorBack, colorText, nAngle, strInfo);

>>> DOWN !!! >>>下载源代码及演示程序


 文章评论

第 1 楼  发表于 2016-09-20 18:20 | 一笑奈何 的所有评论
能实现3D的饼状图吗?现在正在用spread Studio实现
回复于 2016-09-21 08:36:
我没用 VC++ 实现过,不过刚在 GOOGLE 上搜索了一下,你看看:

共有评论 1 条, 显示 1 条。

当前页面是本站的 Google AMP 版本。
欲查看完整版本和发表评论请点击:完整版 »

 

程序员小辉 建站于 1997
Copyright © XiaoHui.com; 保留所有权利。