1.插入控件
2.编写代码
首先要在累的实现文件中包含以下代码
#include "VcPlot.h"
#include "VcAxis.h"
#include "VcValueScale.h"
#include "VcSeriesCollection.h"
#include "VcSeries.h"
#include "VcPen.h"
#include "VcCategoryScale.h"
#include "VcColor.h"
#include "VcDataGrid.h"
#include "VcBackdrop.h"
#include "VcFill.h"
#include "VcBrush.h"
#include "VcDataPoints.h"
#include "VcDataPoint.h"
#include "VcDataPointLabel.h"
#include "VcAxisTitle.h"
#include "math.h"
//在要使用的类的头文件中包含:
#include "mschart.h"
class CMsChartDlgDlg : public CDialog
{
// Construction
… …
private:
CMSChart m_Chart;
… …
};
void CMsChartDlgDlg::initmschart()
{
// 设置标题
m_Chart.SetTitleText("mschart 示例 by thinkry@263.net");
// 下面两句改变背景色
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().GetVtColor().Set(0, 0, 255);
m_Chart.GetPlot().GetSeriesCollection().GetItem(2).GetPen().GetVtColor().Set(255, 0, 0);
m_Chart.GetPlot().GetSeriesCollection().GetItem(3).GetPen().GetVtColor().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().GetItem(-1).GetDataPointLabel().SetLocationType(1);
m_Chart.GetPlot().GetSeriesCollection().GetItem(2).GetDataPoints().GetItem(-1).GetDataPointLabel().SetLocationType(1);
m_Chart.GetPlot().GetSeriesCollection().GetItem(3).GetDataPoints().GetItem(-1).GetDataPointLabel().SetLocationType(1);
}
//画曲线
void CMsChartDlgDlg::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().SetDivisionsPerLabel(1);
// 每刻度一个刻度线
m_Chart.GetPlot().GetAxis(0,var).GetCategoryScale().SetDivisionsPerTick(1);
// X轴名称
m_Chart.GetPlot().GetAxis(0,var).GetAxisTitle().SetText("日期");
char buf[32];
srand( (unsigned)time( NULL ) );
//随机产生三条曲线的6个点
for(int row = 1; row <= nRowCount; ++row)
{
m_Chart.SetRow(row);
sprintf(buf, "%d号", row);
m_Chart.SetRowLabel((LPCTSTR)buf);
m_Chart.GetDataGrid().SetData(row, 1, rand() * 100 / RAND_MAX, 0);//设置第一条曲线的第row个点
m_Chart.GetDataGrid().SetData(row, 2, rand() * 100 / RAND_MAX, 0);//设置第二条曲线的第row个点
m_Chart.GetDataGrid().SetData(row, 3, rand() * 100 / RAND_MAX, 0);//设置第三条曲线的第row个点
}
m_Chart.Refresh();
}
//添加BUTTEN事件响应
void CMsChartDlgDlg::OnButtonShow()
{
// TODO: Add your control notification handler code here
CRect rect;
GetClientRect(rect);
CWnd* pwin = this;
rect.top+=50;
rect.left+=20;
rect.right-=150;
rect.bottom-=50;
CRect rc1(rect.left+20,rect.top+20,rect.right-250,rect.bottom-20);
CRect rc2(rc1.left+20,rect.top+20,rect.right-100,rect.bottom-20);
//签名认证没有不能使用
WCHAR pwchLicenseKey[] =
{
0x0038, 0x0045, 0x0031, 0x0034, 0x0037, 0x0043,
0x0036, 0x0039, 0x002D, 0x0042, 0x0044, 0x0035,
0x0030, 0x002D, 0x0031, 0x0031, 0x0064, 0x0031,
0x002D, 0x0042, 0x0031, 0x0033, 0x0037, 0x002D,
0x0030, 0x0030, 0x0030, 0x0030, 0x0046, 0x0038,
0x0037, 0x0035, 0x0033, 0x0046, 0x0035, 0x0044
};
BSTR bstrLicense = ::SysAllocStringLen(pwchLicenseKey,sizeof(pwchLicenseKey)/sizeof(WCHAR));
//m_Chart.Refresh();
if (!bResult)
{
bResult = m_Chart.Create("mschart", WS_CHILD| WS_VISIBLE, rect, this, 100, NULL, FALSE, bstrLicense);
//bResult = m_Chart.Create("mschart", WS_CHILD| WS_VISIBLE, rect, this, 100);
if (bResult)
{
::SysFreeString(bstrLicense);
//设置显示样式
m_Chart.SetChartType(3);
initmschart();
DrawChart();
}
else
{
::AfxMessageBox("License is illgel");
return;
}
}
else
m_Chart.Refresh();
}
void CMsChartDlgDlg::OnButtonMode()
{
// TODO: Add your control notification handler code here
m_Chart.SetChartType(0);
DrawChart();
}
//添ON_SIZE消息响应函数
void CMsChartDlgDlg::OnSize(UINT nType, int cx, int cy)
{
CDialog::OnSize(nType, cx, cy);
CDialog::OnSize(nType, cx, cy);
if( m_Chart.GetSafeHwnd() )
m_Chart.MoveWindow( 0, 0, cx, cy );
// TODO: Add your message handler code here
}
MSChart函数说明:
m_Chart.GetPlot().GetAxis(1,var)//获取纵轴
//设置是否支持自动标准;控件默认支持自动标准。
m_Chart.GetPlot().GetAxis().GetValuesScale().SetAuto(FALSE);
//设置最大刻度为M;
m_Chart.GetPlot().GetAxis().GetValuesScale().SetMaximum(M);
//设置最小刻度为m;
m_Chart.GetPlot().GetAxis().GetValuesScale().SetMinimum(m);
//设置轴的等分数D;
m_Chart.GetPlot().GetAxis().GetValuesScale().SetMajorDivision(D);
//设置每等分的刻度线数n;
m_Chart.GetPlot().GetAxis().GetValuesScale().SetMinorDivision(n);
//b)横轴初始化属性
VARIANT var;
m_Chart.GetPlot().GetAxis(0,var)//获取横轴
//其他属性设置跟纵轴相同。
//1.2 数据显示
//a)设置标题栏和标签
m_Chart.SetTitleText(“标题”);//设置标题栏
m_Chart.SetRowLabel((“第I行”);//设置第i行标签
m_Chart.SetColumnLabel((“第j列”);//设置第j列标签
//b)行列的显示布局
MSChart的行列显示布局有其自身的特点:下面显示是一个行列4×3(矩形图),即(四行,三列)的布局示意图。
m_Chart.SetRowCount(4); //没条曲线三个四个点 (曲线图)
m_Chart.SetColumnCount(3); //设置曲线条数为三条(曲线图)
//c)行列操作
// 操作行列第i行、第j列
m_Chart.SetRow(i);// 第i行
m_Chart.SetColumn(j);//第j行
m_Chart.SetRowLabel((“第i行”);//设置第i行标签
CString str=”90.5”;
m_Chart.SetData((LPCTSTR(str)); //设置行列,j>的显示数据
m_Chart.Refresh();//刷新视图
//d)显示方式
//获取当前的显示方式:
long nType =m_Chart.GetChartType();
//设置显示方式:
m_Chart.SetChartType(0);//3D(三维) 显示
m_Chart.SetChartType(1);//2D(二维) 显示
m_Chart.Refresh();
//其它常用组合方式为:
m_Chart.SetChartType(1|0) //2D柱(条)形,
m_Chart.SetChartType(0|0) //3D柱(条)形
m_Chart.SetChartType(1|2) //2D线条型
m_Chart.SetChartType(0|2) //3D线条型
m_Chart.SetChartType(1|4) //2D区域型
m_Chart.SetChartType(0|4) //3D区域型
m_Chart.SetChartType(1|6) //2D阶梯型
m_Chart.SetChartType(0|6) //3D阶梯型
m_Chart.SetChartType(1|8) //2D复(混)合型
m_Chart.SetChartType(0|8) //3D复(混)合型
//另外,在2D方式中,还有两类:饼型和XY型
m_Chart.SetChartType(14) //2D 饼型
m_Chart.SetChartType(16) //2DXY型
e)其他
//其他属性,比如设置字体,颜色,对齐方式等。
设置柱状图颜色
chart.GetPlot().GetSeriesCollection().GetItem(j).GetDataPoints().GetItem(-1).GetBrush().GetFillColor().Set(g_aCurveColors[i]>>16,(g_aCurveColors[i]>>8)&(0x00FF),g_aCurveColors[i]&0x0000FF);