Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
523
UltraChart performance tuning tips ??
posted

 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" />

 

Parents
  • 523
    Verified Answer
    posted

     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

Reply Children
No Data