| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1476 人关注过本帖
标题:vs2010 MFC 用 Microsoft Chart Control 控件做统计图怎么录入数据?
只看楼主 加入收藏
kingsevy
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2013-12-14
收藏
 问题点数:0 回复次数:0 
vs2010 MFC 用 Microsoft Chart Control 控件做统计图怎么录入数据?
m_chart.put_Row(1);
     m_chart.put_RowLabel(_T("一月"));
      m_chart.put_Row(2);
     m_chart.put_RowLabel(_T("二月"));
      m_chart.put_Row(3);
     m_chart.put_RowLabel(_T("三月"));

     m_chart.put_Column(1);
     m_chart.put_ColumnLabel(_T("吃"));
     m_chart.put_Column(2);
     m_chart.put_ColumnLabel(_T("穿"));
     m_chart.put_Column(3);
     m_chart.put_ColumnLabel(_T("住"));
     m_chart.put_Column(4);
     m_chart.put_ColumnLabel(_T("行"));


    // m_chart.put_Data(_T("数据"));
   
     
    //行列数据录入
    long lValue = 10;
    VARIANT vParam;
    vParam.vt = VT_I4;
    vParam.lVal = lValue;

     
        //m_chart.put_ChartData(vParam);
        /*
       m_chart.put_Row(1);
       m_chart.put_Column(2);
       num = 20;
        vParam.dblVal = num;
       m_chart.put_ChartData(vParam);
其他地方都设置好了,就是不知道怎么录入数据
图片附件: 游客没有浏览图片的权限,请 登录注册
搜索更多相关主题的帖子: Microsoft 统计图 
2013-12-14 13:30
快速回复:vs2010 MFC 用 Microsoft Chart Control 控件做统计图怎么录入数据?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.018832 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved