sweep

Members
  • Content count

    7
  • Joined

  • Last visited

About sweep

  • Rank
    Forum Newbie
  1. How To Pass Chart Settings

    Going through other posts it looks like I can't use <chart> if I'm using fusion charts Free it has to be <graph> do you know if <graph> supports hiding the top and right border, setting the background image on a 2d line chart and adding canvasPassing because it seems to ignore these parameters?
  2. How To Pass Chart Settings

    Hi thanks for that, the problem I have is I cant pass <chart to the php script I have to use <graph or it fails to display, do you know why this happens?
  3. Hi there, I asked this in the PHP forum but got not response, so I'm asking here because its a bit more active! it possible to remove the top and right border of a graph? I have seen references to applying a style to the canvas but can't find any examples of how to do this using PHP and the renderchart function.<br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);"><br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);">renderChart("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", 600, 300) secondly i'm building up my chart string in PHP using the following:<br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);">$strXML .= "<graph caption='graph' xAxisName='Date' yAxisName='Number' decimalPrecision='0' showShadow ='0' rotateNames='1' lineThickness='5' showValues='0' showAnchors='0' numDivLines='0' canvasBorderAlpha='0' canvasPadding='30' bgImage='images/graph_bg.png' bgAlpha='0' bgColor='FFFFFF' showBorder='0'>";<br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);"><br style="color: rgb(107, 107, 107); font-family: verdana, arial, tahoma, sans-serif; line-height: 18px; background-color: rgb(247, 247, 247);">but certain things such as the bgImage and canvasPadding have no effect. In the documentation it references applying these to <canvas, how do I do that using the above code and how is <canvas different to <graph? Thanks
  4. Hi, I'm building up my chart string in PHP using the following: $strXML .= "<graph caption='graph' xAxisName='Date' yAxisName='Number' decimalPrecision='0' showShadow ='0' rotateNames='1' lineThickness='5' showValues='0' showAnchors='0' numDivLines='0' canvasBorderAlpha='0' canvasPadding='30' bgImage='images/graph_bg.png' bgAlpha='0' bgColor='FFFFFF' showBorder='0'>"; but certain things such as the bgImage and canvasPadding have no effect. In the documentation it references applying these to <canvas, how do I do that using the above code and how is <canvas different to <graph? Thanks
  5. Hi there, is it possible to remove the top and right border of a graph? I have seen references to applying a style to the canvas but can't find any examples of how to do this using PHP and the renderchart function. Thanks! renderChart("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", 600, 300)