I have a problem about tooltip.it's working on FireFox and IE very good,but not Opera.I try research on Internet and this forum ,but i do not find this problem.May you help me this problem.Thanks !!!
please feel free to report issues here even if they're in an "unsupported environment" ...
the chart has always worked fine in opera, but it looks like a recent bugfix we made caused it to stop working. i logged this as a bug (#16665) and fixed it, so it should be resolved in a future hotfix release.
you can contact infragistics developer support (http://infragistics.com/gethelp) with that bug number if you need an update on when the hotfix is coming out.
if you need a temporary workaround, find the ig_webchart.js file in your netadvantage installation, copy it locally to your web application, then set the chart's JavaScriptFileName property to ./ig_webchart.js or something similar.
then open up the ig_webchart.js file that you just copied, and find this line towards the end (line 1774 for me):
if (evt.type == "mousemove" && (IGB.IsNetscape6 || IGB.IsMac))
change it to:
if (evt.type == "mousemove" && (IGB.IsNetscape6 || IGB.IsMac || IGB.IsOpera))
and the tooltips will show up in opera.
Thank so much everybody about this problem.I have fixed it,and run tooltip Opera very good.