Being the first number the X coordinate and the second the Y coordinate
The code Im using is :
B4X:
Public XY As List
XY.Initialize
XY = su.LoadCSV(File.DirApp, "coordinates.csv", ",")
Dim Plot As XYSeries
Plot.Initialize("plot")
For i= 0 To XY.Size-1
Dim c(2) As Double = XY.Get(i)
Plot.Add(c(0), c(1))
Next
ScatterChart.AddSeries(Plot)