Jump to content
Software FX Community

Disable tooltip in AxisSection


piiguu

Recommended Posts

  • 2 weeks later...

Hi,

This can be done by handling the GetTip event and setting the tip text to null if HitType is AxisSection. Here is the sample code. Let me know if it works for you.

Adding the event handler on Form_Load:

chart1.GetTip += new GetTipEventHandler (chart1_GetTip);

And here is what the event looks like.

void chart1_GetTip( object sender, GetTipEventArgs e) {   if (e.HitType == HitType .AxisSection) {   e.Text = null ; } }

Regards,

 

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