boarderx

Members
  • Content count

    4
  • Joined

  • Last visited

Everything posted by boarderx

  1. I'm working with a 3D Pie Chart and I want to remove the space between the chart caption and the pie graph. I have defined captionPadding = 0, but the chart still has approximately 40-50 px of white space between the caption and chart. Is this variable the only way that the spacing between the two can be controlled? Is there another setting that I should be using? EDIT: I figured this out. All I had to do was decrease the height of the chart.
  2. Reoccuring "Undefined" Error

    Upon rendering, my charts consistently show the text "undefined". When the button that is used to render the chart is clicked a second time, the chart will appear. I can't figure out why this is happening. I'm working in a .aspx page, but using javascript to pull the chart data and render it. I read a post from someone with a similar problem that hinted that the full javascript file may not be loaded before the chart is rendered. I don't think that's possible in my case because the js is loaded on page load and the chart is only rendered when the user clicks a button. My aspx page has this script definition: < script type="text/javascript" src="/FusionCharts/FusionCharts.js"> script > This is the javascript: getPopupChartData(location, 'LEVEL', function(xml) { var chartLevel = new FusionCharts("/FusionCharts/Charts/Pie3D.swf", "SS1", chartWidth, chartHeight, "0", "0"); chartLevel.setDataXML(escape(xml)); chartLevel.render("LevelsChart"); }); For some reason the xml won't post correctly, so I attached a file. data.xml
  3. I'd like to set the canvas background to a solid color, but it keeps showing a striped background. I'm using MSArea.swf chart. I have set the bgColor attribute but that isn't working. Here is the xml that I'm using: Any ideas? Is there a setting that will set the canvas background to solids? Thanks, RF
  4. How to removed striped effect from canvas?

    I figured this out. I had to set bgAlpha='100'