zoukankan      html  css  js  c++  java
  • Chart系列(二):数据绑定

    1.绑定到OleDbDataReader:

    // Define the database query    
    string mySelectQuery="SELECT Name, Sales FROM REPS;";
    // 。。。。。。
    // Create a database reader    
    OleDbDataReader myReader = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
    
    // Since the reader implements and IEnumerable, pass the reader directly into
    // the DataBindTable method with the name of the Column to be used as the XValue
    Chart1.DataBindTable(myReader, "Name");

    image

    2.绑定DataSource

    // Define the database query    
    string mySelectQuery="SELECT * FROM REPS;";
    
    // Create a database connection object using the connection string    
    OleDbConnection myConnection = new OleDbConnection(myConnectionString);
    // Create a database command on the connection using query    
    OleDbCommand myCommand = new OleDbCommand(mySelectQuery, myConnection);
    myConnection.Open();
    // set chart data source - the data source must implement IEnumerable
    chart1.DataSource = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
    
    // Set series members names for the X and Y values 
    chart1.Series["Series 1"].XValueMember = "Name";
    chart1.Series["Series 1"].YValueMembers = "Sales";
    
    // Data bind to the selected data source
    chart1.DataBind();

    image

    3.绑定Y值

    // Create a database reader    
    OleDbDataReader myReader = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
    
    // Since the reader implements and IEnumerable, pass the reader directly into
    // the DataBind method with the name of the Column selected in the query    
    chart1.Series["Default"].Points.DataBindY(myReader, "GrossSales");

    image

    4.绑定X和Y

    // Create a database reader    
    OleDbDataReader myReader = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
    
    // Since the reader implements IEnumerable, pass the reader directly into
    //   the DataBind method with the name of the Column selected in the query    
    chart1.Series["Default"].Points.DataBindXY(myReader, "Name", myReader, "Sales");

    image

  • 相关阅读:
    图像处理之优化---任意半径局部直方图类算法在PC中快速实现的框架
    新的验证方式---短信验证和语言验证
    习武 之路---通背拳和苗刀!
    模式识别之Shape Context---利用Shape Context进行形状识别
    ELK 部署
    rsync实现文件备份同步
    oracle-3-子查询和常用函数
    oracle-2中commit 详解
    使用nginx绑定域名,代理gitlab
    Linux Crontab 安装使用详细说明
  • 原文地址:https://www.cnblogs.com/pengzhen/p/4082435.html
Copyright © 2011-2022 走看看