Answers for "how to add line graph vb net"

VBA
0

how to add line graph vb net

MyChart.Series.Clear()

MyChart.Titles.Add("My Chart Title")

Dim MySeries As New Series
MySeries.Name = "My Series"
MySeries.ChartType = SeriesChartType.Line

'Use this to add points to your series
MySeries.Points.AddXY("X Category", 69)
     
MyChart.Series.Add(MySeries)
Posted by: Guest on January-06-2022

Code answers related to "VBA"

Browse Popular Code Answers by Language