Click here to Skip to main content
15,896,409 members

Graph presentation in C#

Member 9681862 asked:

Open original thread
hai
i have tried to write the coding for presenting a graph from mysql database data in C# coding but i get the error like chart1 is not excit in the current context.

I don't know how to clear the error if u have any idea please reply me

I attached the following code I did

C#
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Web;
//using System.Web.UI;
//using System.Web.UI.WebControls;
using System.Windows.Forms.DataVisualization.Charting;
using MySql.Data.MySqlClient;

namespace WindowsFormsApplication4
{
    public partial class Form1 : Form
    {
   
        public Form1()
        {
            InitializeComponent();
            MySqlConnection con = new MySqlConnection();
            //Chart Chart1.Series["Series1"].ChartType = SeriesChartType.Column;
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            Chart1.Series["Series1"].ChartType = SeriesChartType.Column;
            try
            {
            // TODO: This line of code loads data into the 'testDataSet.periodicdata' table. You can move, or remove it, as needed.
            this.periodicdataTableAdapter.Fill(this.testDataSet.periodicdata);
             MySqlConnection con = new MySqlConnection();
            con.ConnectionString = "server=localhost;user id=root;password=vinoth;database=test";
            MySqlCommand cmd = new MySqlCommand();

           
                //con.ConnectionString = "server=localhost;user id=root;password=******;database=test";
                //con.ConnectionString = "server=.\\mysqlexpress;database=test;integrated security=true;";
                con.Open();
        
            }
            catch (Exception ex) { MessageBox.Show(ex.ToString()); }
        }


        private void button1_Click(object sender, EventArgs e)
        {
            Chart1.Series["Series1"].ChartType = SeriesChartType.Column;
            Chart1.Series["Series1"]["DrawingStyle"] = "Emboss";
            //Chart1.ChartAreas["ChartArea1"].Area3DStyle.Enable3D = true;
            Chart1.Series["Series1"].IsValueShownAsLabel = true;

            FillData();
        }

        private void FillData()
        {
            DataTable dt = new DataTable();
            DataColumn dc;

            dc = new DataColumn();
            dc.ColumnName = "date_time";
            dt.Columns.Add(dc);
            dc = new DataColumn();
            dc.ColumnName = "Volt1";
            dt.Columns.Add(dc);

            Chart1.DataSource = dt;
            Chart1.Series["Series1"].XValueMember = "date_time";
            Chart1.Series["Series1"].YValueMembers = "Volt1";
            Chart1.DataBind();
            //throw new NotImplementedException();
        }
    }
}
Tags: C#, MySQL

Plain Text
ASM
ASP
ASP.NET
BASIC
BAT
C#
C++
COBOL
CoffeeScript
CSS
Dart
dbase
F#
FORTRAN
HTML
Java
Javascript
Kotlin
Lua
MIDL
MSIL
ObjectiveC
Pascal
PERL
PHP
PowerShell
Python
Razor
Ruby
Scala
Shell
SLN
SQL
Swift
T4
Terminal
TypeScript
VB
VBScript
XML
YAML

Preview



When answering a question please:
  1. Read the question carefully.
  2. Understand that English isn't everyone's first language so be lenient of bad spelling and grammar.
  3. If a question is poorly phrased then either ask for clarification, ignore it, or edit the question and fix the problem. Insults are not welcome.
  4. Don't tell someone to read the manual. Chances are they have and don't get it. Provide an answer or move on to the next question.
Let's work to help developers, not make them feel stupid.
Please note that all posts will be submitted under the http://www.codeproject.com/info/cpol10.aspx.



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900