Hi,
I'm using NetAdvantage 2008 Vol 1 and I'm having a problem with scrollbars appearing in the browser when I add a UltraChart and move my mouse over it.
Example code:
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
</head>
<body>
<form id="form1" runat="server">
<div>
<igchart:UltraChart ID="UltraChart1" runat="server">
</igchart:UltraChart>
</div>
</body>
</html>
I have no code-behind, no css, no data being bound to the chart, so all you get is the default image saying "data not available", but it demonstrates the problem.
If you create a page as above (I'm using Visual Studio 2005 SP1) and run it, and then resize your browser as small as possible without scrollbars appearing, and then put your mouse over the image... scrollbars appear... why?
Any ideas?
it sounds like it might be caused by the tooltip (even though it is not displayed, it should be positioned just to the right of your mouse pointer).
however, this did not happen on my machine using Firefox 2 and IE8 (with IE7 emulation turned on). what browser are you using?
also, try setting the Tooltips.Overflow property to ChartArea or ClientArea, as this might resolve the problem.
I'm using IE7, though it also does it in Firefox 2. I've tried setting Tooltips.Overflow property to ChartArea and ClientArea and it made no difference.