Plotting a circle with coordinate in excel

trustmeasfrnd

New Member
Joined
Oct 19, 2008
Messages
32
i ve a circle with 18 nodes and i want to plot it in excel may be using chart.it can be done.
now suppose i plotted a circle of diameter 2m then i have 18 nodes equally divided on its perimeter.what if i want to reduce the circle diameter to 1.8m how to generate its coordinate any easy way to do this?
ABCD
1node numberxyz
2100-130
3101-0.93973-0.342
4102-0.7663-0.6428
5103-0.53-0.866
6104-0.17363-0.9848
71050.17363-0.9848
81060.53-0.866
91070.7663-0.6428
101080.93973-0.342
11109130
121100.939730.342
131110.76630.6428
141120.530.866
151130.173630.9848
16114-0.173630.9848
17115-0.530.866
18116-0.76630.6428
19117-0.939730.342

<colgroup><col style="width: 25pxpx"><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

thanks and regards,
abhisekh
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Hi MickG,
i plotted it and it looks like circle but how to check whether it is correct or not i mean any ways to confirm that circle dia is reduced or not?
can you also tell how you come up with 0.9 value can it be generalised as formula.

thanks and regards,
abhisekh
 
Upvote 0
Not sure how helpful this is , but:-
NB:- 0.9 = 1.8/2.0

Below is the chart after size reduction i.e. Multiply "X" and "Z" by 0.9
The Actual circle size is only relative to the chart scales.
If you Plot the original data you will see, relative to the scales it has changed.

content


Modified Data series:-
NB: Extra (x-y) values added at bottom of data to complete circle !!!!
-0.90
-0.84573-0.3078
-0.6894-0.57852
-0.45-0.7794
-0.15624-0.88632
0.15624-0.88632
0.45-0.7794
0.6894-0.57852
0.84573-0.3078
0.90
0.845730.3078
0.68940.57852
0.450.7794
0.156240.88632
-0.156240.88632
-0.450.7794
-0.68940.57852
-0.845730.3078
-0.90
<colgroup><col width="84" style="width: 63pt; mso-width-source: userset; mso-width-alt: 2986;"> <col width="126" style="width: 95pt; mso-width-source: userset; mso-width-alt: 4494;"> <tbody> </tbody>
 
Upvote 0
Not sure how helpful this is , but:-
NB:- 0.9 = 1.8/2.0

Below is the chart after size reduction i.e. Multiply "X" and "Z" by 0.9
The Actual circle size is only relative to the chart scales.
If you Plot the original data you will see, relative to the scales it has changed.

content


Modified Data series:-
NB: Extra (x-y) values added at bottom of data to complete circle !!!!
-0.90
-0.84573-0.3078
-0.6894-0.57852
-0.45-0.7794
-0.15624-0.88632
0.15624-0.88632
0.45-0.7794
0.6894-0.57852
0.84573-0.3078
0.90
0.845730.3078
0.68940.57852
0.450.7794
0.156240.88632
-0.156240.88632
-0.450.7794
-0.68940.57852
-0.845730.3078
-0.90

<tbody>
</tbody>

thank you,
I checked it by plotting both in same chart which shows that diameter is changed and then i also calculated it for each points by calculating dia using extreme points which is basis for plotting circle (x1-x2)^2+(y1-y2)^2 = Dia^2.

perfect. how do you attache chart here? i m curious may be i don't know have to dig more.
thank you again
regards
 
Last edited:
Upvote 0
You're welcome

Paste chart:-
There's probably better ways but, I assign the code below to the chart:-
Code:
Sub Chart1_Click()
Const strPath As String = "C:\Users\USER1\Desktop\cam.gif"
ActiveSheet.ChartObjects(Application.Caller).Chart.Export strPath
End Sub
This creates a file on the desktop , then I upload it to Box.com, where I open it, copy it and then paste back into Forum Page.
 
Upvote 0
Solution

Forum statistics

Threads
1,214,377
Messages
6,119,183
Members
448,872
Latest member
lcaw

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