MSChart控件

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

一、在工程中加入 mschart

菜单->Project->Add To Project->Components and Controls->Registered ActiveX Controls->Microsoft Chart Control, version 6.0 (OLEDB)

二、在CDemoView中加入:CMSChart m_Chart

三、创建及设置m_Chart

3.1 在 CDemoView::OnCreate 中创建CMSChart

// CDemoView::OnCreate()

CRect rc;

GetClientRect(&rc);

if(!m_Chart.Create("mschart", WS_CHILD| WS_VISIBLE, rc, this, 10)) return -1;

3.2 在 CDemoView::OnSize 中调整 m_Chart 的大小,使之能随窗口大小变化而变化 // CDemoView::OnSize

if( m_Chart.GetSafeHwnd() )

m_Chart.MoveWindow( 0, 0, cx, cy );

3.3 设置 m_Chart void CDemoView::InitChart()

{

// 设置标题

m_Chart.SetTitleText("mschart 示例");

// 下面两句改变背景色

m_Chart.GetBackdrop().GetFill().SetStyle(1);

m_Chart.GetBackdrop().GetFill().GetBrush().GetFillColor().Set(255, 255, 255);

// 显示图例

m_Chart.SetShowLegend(TRUE);

m_Chart.SetColumn(1);

m_Chart.SetColumnLabel((LPCTSTR)"1号机");

m_Chart.SetColumn(2);

m_Chart.SetColumnLabel((LPCTSTR)"2号机");

m_Chart.SetColumn(3);

m_Chart.SetColumnLabel((LPCTSTR)"3号机");

// 栈模式

// m_Chart.SetStacking(TRUE);

// Y轴设置

VARIANT var;

m_Chart.GetPlot().GetAxis(1,var).GetValueScale().SetAuto(FALSE); // 不自动标注Y轴刻度

m_Chart.GetPlot().GetAxis(1,var).GetValueScale().SetMaximum(100); // Y轴最大刻度

m_Chart.GetPlot().GetAxis(1,var).GetValueScale().SetMinimum(0); // Y 轴最小刻度

m_Chart.GetPlot().GetAxis(1,var).GetValueScale().SetMajorDivision(5); // Y轴刻度5等分

m_Chart.GetPlot().GetAxis(1,var).GetValueScale().SetMinorDivision(1); // 每刻度一个刻度线

m_Chart.GetPlot().GetAxis(1,var).GetAxisTitle().SetText("小时"); // Y 轴名称

// 3条曲线

m_Chart.SetColumnCount(3);

// 线色

m_Chart.GetPlot().GetSeriesCollection().GetItem(1).GetPen().GetVtCol or().Set(0, 0, 255);

m_Chart.GetPlot().GetSeriesCollection().GetItem(2).GetPen().GetVtCol or().Set(255, 0, 0);

m_Chart.GetPlot().GetSeriesCollection().GetItem(3).GetPen().GetVtCol or().Set(0, 255, 0);

// 线宽(对点线图有效)

m_Chart.GetPlot().GetSeriesCollection().GetItem(1).GetPen().SetWidth (50);

m_Chart.GetPlot().GetSeriesCollection().GetItem(2).GetPen().SetWidth (100);

m_Chart.GetPlot().GetSeriesCollection().GetItem(3).GetPen().SetWidth (2);

// 数据点类型显示数据值的模式(对柱柱状图和点线图有效)

// 0: 不显示 1: 显示在柱状图外

// 2: 显示在柱状图内上方 3: 显示在柱状图内中间 4: 显示在柱状图内下方 m_Chart.GetPlot().GetSeriesCollection().GetItem(1).GetDataPoints().G etItem(-1).GetDataPointLabel().SetLocationType(1);

m_Chart.GetPlot().GetSeriesCollection().GetItem(2).GetDataPoints().G etItem(-1).GetDataPointLabel().SetLocationType(1);

m_Chart.GetPlot().GetSeriesCollection().GetItem(3).GetDataPoints().G etItem(-1).GetDataPointLabel().SetLocationType(1);

}

3.4 设置数据 void CDemoView::DrawChart()

{

int nRowCount = 6;

m_Chart.SetRowCount(nRowCount);

VARIANT var;

// 不自动标注X轴刻度

m_Chart.GetPlot().GetAxis(0,var).GetCategoryScale().SetAuto(FALSE);

// 每刻度一个标注

m_Chart.GetPlot().GetAxis(0,var).GetCategoryScale().SetDivisionsPerL abel(1);

相关文档
最新文档