I have a dash board page where I display some 20 line charts using Ultrachart. What I basically want is plain thumb nail images with no tool tips etc. I was able to remove tool tip, but when view source Infrgistics spits huge amount of java script that is no where getting used. for example, below I cut and pasted some of the html contents in view source. I am dam sure I am not making use of any of these, even Infragistics also. How do I eliminate these so that my page loads faster even on dial up connection.
var TD = new Array(100);TD["03_0_99"] = "86";TD["03_0_98"] = "85";TD["03_0_97"] = "85";TD["03_0_96"] = "85";TD["03_0_95"] = "87";
<area coords="246,83,4" shape="circle" /> <area coords="241,96,4" shape="circle" /> <area coords="235,90,4" shape="circle" /> <area coords="229,95,4" shape="circle" /> <area coords="223,107,4" shape="circle" /> <area coords="217,110,4" shape="circle" />
it looks like you found the biggest bottleneck was HTML rendering size, and worked around it by setting JavaScriptEnabled = false. Please let us know if you have any more trouble.
I figured out way, First thing disable tool tips and secondly Disable the javascript for Ultrachar. now the page HTML reduced to 1/20 th of the original size.
UltraChart1.Tooltips.Display = Infragistics.UltraChart.Shared.Styles.TooltipDisplay.Never UltraChart1.JavaScriptEnabled = False