visual basic how to plot points on a graph using the chart

Imports System.Windows.Forms.DataVisualization.Charting
Public Class Form1
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
        Dim scatterChart As New Chart

        'Create the series
        scatterChart.Series.Add(New Series("Property1") With {.ChartType = SeriesChartType.Point, .Color = Color.Green})
        scatterChart.Series.Add(New Series("Property2") With {.ChartType = SeriesChartType.Point, .Color = Color.Green})

        'Set the minimum and maximums
        scatterChart.ChartAreas.Add(New ChartArea)
        scatterChart.ChartAreas(0).AxisX.Minimum = 0
        scatterChart.ChartAreas(0).AxisX.Maximum = 100
        scatterChart.ChartAreas(0).AxisY.Minimum = 0
        scatterChart.ChartAreas(0).AxisY.Maximum = 100

        'Invert the y axis
        scatterChart.ChartAreas(0).AxisY.IsReversed = True

        'Plot the 2 sample data
        scatterChart.Series("Property1").Points.AddXY(50, 25)
        scatterChart.Series("Property2").Points.AddXY(75, 65)

        Me.Controls.Add(scatterChart)
    End Sub
End Class

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source