I've created a program that could read coil voltages. In each coil, there are 256 points. I manage to get the scatterline to work but the DOTS are too big. How to minimise or adjust the size of the dots?
'Create Graph For Coil1
With ActiveSheet.ChartObjects.Add _
(Left:=110, Width:=375, Top:=55, Height:=225)
.Chart.SetSourceData Source:=Sheets("Program").Range("A9:IV9")
.Chart.ChartType = xlXYScatterLines
.Chart.Size = 4
End With
'Create Graph Heading For Coil1
With Worksheets("Program").ChartObjects(1).Chart
.HasTitle = True
.ChartTitle.Text = "Coil 1"
End With
Bookmarks