amit Posted October 17, 2007 Report Share Posted October 17, 2007 Hello Gurus,I am entering data through data grid (vb.net2003), what i want is that once user enter the data in the grid and click on button ,graph should come on the basis of data.values are like X Y 1 1010 2020 3030 4040 50This is dead end urgentplease help me Thanks Quote Link to comment Share on other sites More sharing options...
maximop Posted October 17, 2007 Report Share Posted October 17, 2007 If you are using the DataGrid provided by the .NET Framework, you can simply pass the DataSource of the grid to the DataSource of the chart as follows in the click event of the button: chart1.DataSource = dataGrid1.DataSource; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.