Jump to content
Software FX Community

Can I stop 'constant line' tooltips from appearing?


User (Legacy)

Recommended Posts

Only for the constant lines ?

To turn off tooltips altogether you can set:

chart.ShowTips = false;

You can not selectively turn off the tooltip for one of the many objects

that show tooltips, you can however capture the GetTip event and return

empty ("") strings for those elements, for example:

if (e.HitType == HitType.ConstantLine)

e.Text = string.Empty;

--

FP

Software FX

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...