Hi,
I would like to know if it's possible to change font size of values on axis.
<pre> GraphPane pane = myGraph.GraphPane; pane.XAxis.Title.FontSpec.Size = 24; // pane.XAxis.FontSpec.Size = 24; Don't exists ? </pre>
Thanks for your help
Sorry, I finally got it ;)
pane.YAxis.Scale.FontSpec.Size = xxx;
Thanks
Log in to post a comment.
Hi,
I would like to know if it's possible to change font size of values on axis.
<pre>
GraphPane pane = myGraph.GraphPane;
pane.XAxis.Title.FontSpec.Size = 24;
// pane.XAxis.FontSpec.Size = 24; Don't exists ?
</pre>
Thanks for your help
Sorry, I finally got it ;)
pane.YAxis.Scale.FontSpec.Size = xxx;
Thanks