Quinn-Curtis Forums
Quinn-Curtis Forums
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Tools for Microsoft .Net
 Real-Time Graphics Tools for .Net (VB and C#)
 RtAutoScrollGraph question

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
   

T O P I C    R E V I E W
soundar Posted - 02 Dec 2012 : 02:39:55
I need to draw 5 plots on the primary y axis to one scale and 3 plots on the secondary y axis to a different scale. Is this possible using RTAutoScrollGraph? Is there an example I can refer to?

How do I an axis title (and other properties) for the y2 axis title (different from the yaxistitle)?
1   L A T E S T    R E P L I E S    (Newest First)
quinncurtis Posted - 02 Dec 2012 : 11:47:58
The example program RTStockDisplay demonstrates how to combine different coordinate systems in the same real-time chart. You will need one scroll frame for each unique coordinate system, so in your case it sounds like you will need two scroll frames: one with three RTProcessVar objects attached to it, and the other with two.

You add a second y-axis title the same way you add the first.
AxisTitle yAxisTitle2 = new AxisTitle(yaxis2, theFont, "YAxis2");
yAxisTitle2.SetYJust(ChartObj.JUSTIFY_MIN);
chartVu.AddChartObject(yAxisTitle2);

The call to SetYJust is required to bottom justify a title placed to the right of the axis labels.

Quinn-Curtis Forums © 2000-2018 Quinn-Curtis, Inc. Go To Top Of Page
Powered By: Snitz Forums 2000 Version 3.4.07