How to create XY axis data for a circle and key into data table
I would like to draw a circle in graph builder.I know that one way is using "customize" function in graph build, then use code like below to draw a circlePen Color( "orange" );
Pen Size( 2 );
Circle( {0, 0}, 100 ); But I need another way, that is, provide X,Y data in data table, then draw a X-Y map in graph builderApproximately 50 points data of a circle would be enough for me So is there any way t...