View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.charting
[email protected] john.fernbank@uk.mbprecis.com is offline
external usenet poster
 
Posts: 1
Default Setting reverse order for axis in OWC 11 chart component

Sorry to arrive a bit late on the scene, but the following should do
the trick (the default is MinMax):

cht.Axes[0].Scaling.Orientation =
ChartScaleOrientationEnum.chScaleOrientationMaxMin ;

OWC is not very developer-friendly - the Microsoft Chart Controls
for .NET Framework are a much better option:

http://code.msdn.microsoft.com/mschart

Best wishes

John