How to set Axes Min/Max values in C#
Is there a way to set the Axis values in C#? I see it referenced using VBA,
but I'm not able to access using C#. When I compile the statements below, I
get an error 'object does not contain a definition for MinimumScale'.
Thanks!
ActiveChart.Axes(xlValue,xlPrimary).MinimumScale = 90;
ActiveChart.Axes(xlValue,xlPrimary).MaximumScale = 105;
|