piiguu 0 Report post Posted June 16, 2010 Hi, When the mouse is hovering over an AxisSection, a yellow tooltip of "from xxx to xxx" is displayed. Any way to disable it? Thanks, Piiguu Quote Share this post Link to post Share on other sites
RandyJ 0 Report post Posted June 29, 2010 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, Quote Share this post Link to post Share on other sites
piiguu 0 Report post Posted June 30, 2010 Thank you for your help, Randy. It works now. Thanks, Piiguu Quote Share this post Link to post Share on other sites