Urgent! How to Resize Pointers on Scatterplot VBA Excel

ma3

New Member
Joined
Nov 20, 2012
Messages
5
Hey, I've created a program to calculate Coil Voltages. For each voltages, there are 256 points. The dots on the scatterplot is too big and currently I had a hard time on resizing it to be smaller.

Those below are the codes on creating scatterplot for one coil voltage:

'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

End With

'Create Graph Heading For Coil1
With Worksheets("Program").ChartObjects(1).Chart
.HasTitle = True
.ChartTitle.Text = "Coil 1"

End With
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Hi,

This should get you started...

Code:
For x = 1 To activechart.seriescollection(1).Points.Count
activechart.seriescollection(1).points(x).MarkerSize = 3
next x
 
Upvote 0

Forum statistics

Threads
1,215,053
Messages
6,122,888
Members
449,097
Latest member
dbomb1414

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top