JamesP

Members
  • Content count

    6
  • Joined

  • Last visited

About JamesP

  • Rank
    Forum Newbie
  1. Sorry maybe I wasn't clear. It doesn't have to be via the javascript API, changes in the XML are fine. However, it needs to be something more than changing the node color, as we have various colors for various purposes and this highlight should be in addition to the color. For example can I apply a shadow setting to just one node? I've experienced with this and it seems to be an all or nothing setting, but I'm hoping you can tell me otherwise. Thanks James
  2. My final question for today. The system we've created allows for documents and links to be attached to a node via our HTML interface. We have it setup so when you click a node the links are displayed in a side bar via some AJAX methods. Our client would really like to highlight the nodes that have attachments on the Fusion Charts object. Is there any way we can highlight a specific node on the chart, either via the XML loaded to display the chart or other means. By highlighting I mean use one of the animation effects in the documentation, change the font style, or even just change the border for an individual node? Most of our nodes are the default shapes, with some been image nodes, although I could live with a solution that only worked on the shape nodes if thats all that possible. I look forward to the response, and hope its different to the one I've had to give the clients up until this point. Thanks James
  3. Hello again, I have a system in place where you create a node via a html interface and the XML for the chart is generated when the display is required. I am having problems with certain characters in the node's name attribute, the special characters are the usual culprits of & " ' While Fusionharts can read the generated XML with a node name containing "&" (technically invalid XML), this causes the XML generated by getChartXML to be invalid, and error later in my process. I've tried encoding the text, but this jut results in Fusioncharts displaying the HTML encoded characters rarther than the decoded symbol. I need a solution where the retrieved XML from the flash chart is valid for use using the Microsoft parser in ASP.NET. I am in control of what is passed in to FusionCharts, so the node names can be encoded or plain text and any other solution. Thanks for your help James
  4. Good afternoon, Is it possible to change the font used within the nodes on the drag node chart? I've experimented with the various documented XML chart and style attributes, but all that seems to change is the font of the tooltip. Am I trying to do something that is not supported by the drag node chart? Thanks James
  5. It would be nice to be able to make much bigger charts. Two features which would enable this would be Zoom and Scrolling. Any chance of these been included in a future release? James
  6. When using the following code: <div id="chartdiv" align="center"> FusionCharts. </div> <script type="text/javascript"> var chart = new FusionCharts("/Charts/DragNode.swf", "TestChart", "3000", "3000", "0", "1"); chart.setDataURL("DragNode1.xml"); chart.render("chartdiv"); </script> Internet Explorer throws the following error: "TestChart" is undefinied. This is preventing me using the getXMLData in internet explorer. The code works fine in Firefox. Does anyone have any suggestions? James