dee

Members
  • Content count

    9
  • Joined

  • Last visited

About dee

  • Rank
    Forum Newbie
  1. Fixed it! I was being a dumb *** and hadn't enclosed my php function call to return the XML in quotes. fixed php line below: Echo("myChart.setDataXML("".outputChartXML($graphObject)."");"); Regards Dee
  2. Hi Guys; I am rendering a fusion chart using the setDataXML method, and I keep getting the error "strDataXML.match is not a function" I am rendering the graph like so: var myChart = new FusionCharts('MSLine.swf?ChartNoDataText=Please configure your graph below.', 'myChartId','713', '300', '0', '1'); myChart.setDataXML(".outputChartXML($graphObject)."); myChart.setTransparent(false); myChart.render('chartdiv'); However should I render the same graph using the setDataURL it renders fine. Does anybody have any ideas on what the problem might be? I noticed in the documentation that the setDataXML method cuts off the graph xml after a certain length. Could this be the issue? I am really struggling with this just now so any help would be welcome, even if it is to confirm that it is not the length of the xml returned form my function outputChartXML. Regards Damien
  3. area transparency issue

    Thanks for the reply, Yeah this is what I have ended up doing I have made the bottom bar white which gives the appearance that the columns do not all start at zero. However this does have one draw back,the chart div lines are not seen through the white bar. At this stage I have not spent much time playing about with the gradients or alpha properties, this might provide a solution to the newest problem.
  4. Hi guys, I have been using fusion charts for about a year, and I have always found it to be very good. However my client has recently requested a new set of graphs be created. Essentially they want graph that can plot a upper and lower limit and highlight the space between. The idea is to to display the range in two sets of data over time. I have tried to create a multi series combination area chart with the lower limit being filled in white - thus making this area look unfilled, and giving me the desired effect. However this does not seem to work as the white area appears in a lighter tone of the colour in the larger area. Is there away to prevent this from happening? E.G. make my areas opaque preventing the first dataset colour from being visible behind the second dataset colour(white). Another solution would be to change my graph to be a bar chart and specify the beginning and end points of my data. This does not seem possible as all bar charts I can see in the documentation begin at the value 0. Am I correct in assuming that this is standard behaviour? Thanks in advance for any help available. Regards Dee
  5. Hi folks, I have been using fusion charts for a little while now and really like it, however when I have a graph embedded in a page with more supporting material and call a javascript window.print function on the page the fusion chart fails to print properly. The graph partially prints out & only by vastly reducing the height/width of the graph will it print properly. Unfortunately this causes two issues, as the reduced graph looks terrible on my page and the data becomes almost unreadable. Has anyone else experienced this issue, or found a work around? Thanks in advance. Dee
  6. Drill down problem in IE

    Hi Rahul thanks for your reply, after examining the attachment I looked back into my own javascript and discovered an error in my own show decision javascript function. The fusion charts where set up correctly. Thanks again for the help. Dee
  7. Hi I have created some MSColumn3D drill down charts. Using the JavaScript drill down method as detailed in the online documentation. The JavaScript works fine for Firefox but fails to fire in both IE6 and IE7. Has anybody got any ideas? Sample JavaScript function to be fired: function showDecision2(myVar) { window.alert('IN DECISION = '+myVar); } Sample of the xml embedded within my graph: Really struggling with this and deadline is looming, any help would be greatly appreciated. Thanks Dee graph xml.xml
  8. Export issue

    Thanks for the reply, do you know if this will be available in future releases? As a work around I have modified my functionality slightly, by providing a "preview and export" button which opens up a new MSLine graph object in a lightbox. I can then export this; and display all the chart values. regards Dee
  9. Export issue

    Hi all, I am attempting to export a scrolling line chart using the export method detailed in the online documentation (http://www.fusioncharts.com/docs/). The problem is that only the currently displayed values are exported. Is there any way to export all the graph values in one go? Is this a known bug or am I missing something really obvious? Cheers in advance for the help. Dee