Note: You must be registered in order to post a reply. To register, click here. Registration is FREE!
T O P I C R E V I E W
tony_lincoln
Posted - 09/11/2006 : 4:48:21 PM Hi,
I am sorry that I still have another question: after the curve fitting, on the graph there will be one table on which there are parameters like Chi-square, equation parameters etc. How to judge the size of this table using Origin C --- sometimes its too big, and it covers most part of the data curve and fitting curve. Is it possible to make it smaller in Origin C programs?
Thanks. Tony
1 L A T E S T R E P L I E S (Newest First)
Mike Buess
Posted - 09/11/2006 : 9:24:19 PM Hi Tony,
I think you are really asking how to change the font size...
GraphLayer gl = Project.ActiveLayer(); GraphObject go = gl.GraphObjects("FIT.P"); if( go ) { go.Label.Font.Size.nVal = 10; // change font size to 10 }