Hi Lester,
Thank you for bringing this up. We will improve the App to report the axes lengths of the ellipses soon.
In the mean time, you can use some LabTalk script to compute the axes lengths and the areas.
1> With your graph with the ellipses active, open the script window (menu: Window->Script Window)
2> Copy and paste all lines of script code pasted below, into the Script Window
3> Then press CTRL+A to select all the lines in the script window
4> Press Enter to execute the lines
Hope this helps.
Easwar
OriginLab
// Temp datasets to hold line dx and dy
dataset dsDX, dsDY;
string str2$="MyLine";
icount=0;
// Loop over all graph objects
doc -e G
{
string str1$ = %B;
// If object is named MyLine...
if(1 == find(str1$,str2$))
{
// Store dx, dy values
icount++;
dsDX[icount]=%B.dx;
dsDY[icount]=%B.dy;
}
}
// Loop over all dx, dy pairs
for (int ii=1; ii<=icount; ii+=2)
{
// Calculate major and minor axis length
double da = sqrt(dsDX[ii]^2+dsDY[ii]^2);
double db = sqrt(dsDX[ii+1]^2+dsDY[ii+1]^2);
double darea = pi*da*db;
type Ellipse#: $((ii+1)/2), a: $(da, .3), b: $(db, .3), area: $(darea, .3);
}