skipper_geffen

Members
  • Content count

    3
  • Joined

  • Last visited

Posts posted by skipper_geffen


  1. Hey fellas.

    Im using asp.net to build my graphs, and put it in a literal.

    the literal looks something like this :

     
    <asp:Literal ID="L1" runat="server"></asp:Literal>
    

    To apply its info, i run this line :

     

     
     L1.Text = FusionCharts.RenderChart("FusionCharts/Line.swf", "", strXML, "L1", "770", "200", False, False)
    

    Thing is that although most of the times the chart shows just fine, sometimes the chart tends to crop.

    Instead of being 770x220 it crops down to 500x100 or something like that, and puts white background to fill up the literal.

    I tried putting that literal inside a div tag,

    <div id="Chart" style="width:770px; height:200px;" >
    <asp:Literal ID="L1" runat="server"></asp:Literal>
    </div> 
    

    But to no avail...

    How do i fix it ?

    Thanks ahead