Jump to content
Software FX Community

Limitation of number of Additonal AxisY


madhur_ahuja

Recommended Posts

 Hello

 My applicaiton makes heavy use of ChartFX libraries. One of my graph is a full screen graph which requires many number of series, around 20.

 Before proceeding for the development of that graph, I want to ensure if there is any limit on number of Additional number of axis you can create in the graph.

 Thanks in Advance

 Madhur

Link to comment
Share on other sites

No practical limit (everything has a limit when dealing with computers).

20 Y-Axis can be handled without a problem. Special consideration need to be taken to address layout issues that may arise by the large number of axes being shown in a small area.

Link to comment
Share on other sites

So, if you can have 20+ Y axis series, how do you do that? I only know of AxisY and AxisY2. How would you setup for several Y axes and get them displayed? Is there an example somewhere?

I ask because I ran into this problem and opted for series normalization instead. So, I'm very curious to know how this is done.

 

Cheers,

Gunner

Link to comment
Share on other sites

chart.AxesY is a collection. You can add as many as you want:

 // Create additional Y-Axes

 AxisY y1 = new AxisY();

chart1.AxesY.Add(y1);

AxisY y2 = new AxisY();

chart1.AxesY.Add(y2);

AxisY y3 = new AxisY();

chart1.AxesY.Add(y3);

AxisY y4 = new AxisY();

chart1.AxesY.Add(y4);

// Associate Y-Axes with series 

chart1.Series[0].AxisY = y1;

chart1.Series[1].AxisY = y2;

chart1.Series[2].AxisY = y3;

chart1.Series[3].AxisY = y4;

 

 

Link to comment
Share on other sites

Okay, not as detailed as I was hoping for.

How's this... Is it possible to produce a chart similar to the one attached in ChartFX? If so, how would that be accomplished? It seems when I add multiple Y axes,  the additional ones do not show up on the chart.

 

Cheers,

Gunner

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...