Sign in to follow this  
KimberlyLord

chart appearance

Recommended Posts

There is a large right and bottom border around chart that I can not seem to get rid of no matter what I do. Is there a way to reduce this area?  This chart problem seems to be related to dell laptops.  The large border is not present on my desktop computer but is reproducible on other dell laptops.

Any help would be greatly appreciated,

Kim

Edited by Guest

Share this post


Link to post
Share on other sites

<html>

  <head>

  <script language="JavaScript" src="Charts/FusionCharts.js"></script>

  </head>

<body bgcolor="#ffffff">

  <div id="chartdiv" align="center" style="background-color:purple">The chart will appear within this DIV. This text will be replaced by the chart.</div>

  <script type="text/javascript">

  var myChart = new FusionCharts("Charts/FCF_Column3D.swf", "myChartId", "400", "300");

  myChart.setDataURL("Charts/Data/Data.xml");

  myChart.render("chartdiv");

  </script>

</body>

</html>

Attached is a screen shot.

Thank you,

Kim Lord

post-358-12844156385_thumb.jpg

Share this post


Link to post
Share on other sites

The chart is actually coming right - you've set a width and height of 400 x 300 pixels, and which is what the chart is plotting.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this