Jump to content
Software FX Community

Secondary X axis


MihaiBejenariu

Recommended Posts

I added a secondary X axis using the code below. Now I saw a vertical line comes along with mouse cursor when I move it over the second axis. How can I avoid/deactivate that? 

 

Thanks in advance 

  AxisX newXaxis = new AxisX();   newXaxis.Min = 0;   newXaxis.Max = chart1.AxisX.Labels.Count;   newXaxis.Step = 3;     newXaxis.Labels[3] = "Q1";   newXaxis.Labels[6] = "Q2";   newXaxis.Labels[9] = "Q3";   newXaxis.Labels[12] = "Q4";     newXaxis.Position = AxisPosition.Near;   newXaxis.Style = chart1.AxisX.Style;   chart1.AxesX.Add(newXaxis);

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...