Quinn-Curtis Forums
Quinn-Curtis Forums
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Tools for Microsoft .Net & .Net Compact Framework
 QCChart2D and QCChart2D CF (VB and C#)
 Another X axis
 New Topic  Reply to Topic
 Printer Friendly
Author Previous Topic Topic Next Topic  

carlao

54 Posts

Posted - 26 Jul 2005 :  23:53:03  Show Profile  Reply with Quote
Relate to Step Line example in your ChartTabDemo program, is there a way to have 3 X axis, that is, one for each chart? Actualy the chart has only one X axis used by the 3 charts.
Thanks.

quinncurtis

1164 Posts

Posted - 27 Jul 2005 :  10:52:51  Show Profile  Reply with Quote
You would just create a new x-axis object, and set its y-axis intercept so that it appears where you want, at the y-intercept of 10 and 20 in the example below.

TimeAxis xAxis2 = new TimeAxis(pTransform1);
xAxis2.SetAxisIntercept(10);
xAxis2.SetColor(Color.White);
chartVu.AddChartObject(xAxis2);

TimeAxis xAxis3 = new TimeAxis(pTransform1);
xAxis3.SetAxisIntercept(20);
xAxis3.SetColor(Color.White);
chartVu.AddChartObject(xAxis3);
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Reply to Topic
 Printer Friendly
Jump To:
Quinn-Curtis Forums © 2000-07 Quinn-Curtis, Inc. Go To Top Of Page
Powered By: Snitz Forums 2000 Version 3.4.07