skipper_geffen

Members
  • Content count

    3
  • Joined

  • Last visited

Everything 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
  2. Hey guys. Im trying figure out how to set padding between the values in the y axis. I don't mean visually- rather, if the first value in the y axis is 20, then the next one will be 70, and the next one will be 120, etc... How do i do that? thanks ahead
  3. Setting padding for the values in the Y-axis

    Exactly what i needed. Thanks a lot m8