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

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
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,530
Messages
6,125,347
Members
449,220
Latest member
Edwin_SVRZ

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