plot a line graph in vb.net
Posted
by
Husna5207
on Stack Overflow
See other posts from Stack Overflow
or by Husna5207
Published on 2013-06-26T04:19:21Z
Indexed on
2013/06/26
4:21 UTC
Read the original article
Hit count: 218
this is my function for plotting a graph in vb.net how I'm going to replace the ("Jon", 10),("Jordan", 30) with a value that i search from database ?
Private Sub chart_btn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles chart_btn.Click
Chart1.Series("Student").Points.AddXY("Jon", 10)
Chart1.Series("Student").Points.AddXY("Jon", 10)
Chart1.Series("Student").ChartType = System.Windows.Forms.DataVisualization.Charting.SeriesChartType.Bar
End Sub
© Stack Overflow or respective owner