Pie Chart——饼状图控件(Pie Chart)以饼状图形式显示每个项目内容所占的百分比比重。在设计时,可以使用属性编辑器添加或者移除项目以及更改属性值。在运行时,使用AddItem,RemoveItem, ClearList和ItemCount用于添加或移除项目;使用ItemTitle, ItemColor和 ItemValue来更改属性值。LegendShowValue和 LegendShowPercent属性用于隐藏某个项目内容的图标符号和百分比数值。
第一步:建立MFC对话框
第二步:插入ActiveX控件--- Pie Chart控件
第三步:单击控件-鼠标右键-添加成员变量
可以通过修改属性获得不同的效果
主要函数介绍:(顾名思义,不再文字赘述)
voidSetItemTitle(long Index, LPCTSTR Title)
voidSetItemColor(long Index, unsigned long Color)
voidSetItemValue(long Index, double Value)
voidput_LegendShowPercent(BOOL newValue)
voidput_LegendValuePrecision(long newValue)
voidput_LegendShowValue(BOOL newValue)
voidAddItem(LPCTSTR Title, unsigned long Color, double Value)
voidRemoveItem(long Index)
voidClearList()