pplingling

Members
  • Content count

    6
  • Joined

  • Last visited

About pplingling

  • Rank
    Forum Newbie
  1. show data values in multi lines?

    Hello, I use the line character 'slash n' or 'r',but it does not work. The xml: <set label='Jul' value='31800' displayValue='aar bb cc {br} dd '/>('slash n' between character 'bb' and 'cc') The chart:
  2. show data values in multi lines?

    I want to show data values in multiple lines. I put '{br}' in the displayValue,like: <set label='David' value='42300' displayValue='this value is too large,{br} please notice'/> but it does not work.The value still show in one line. How can I show data values in multi lines like tooltip in multiple lines ? Thanks A Lot!
  3. problem when export as image

    Column2D.html: <head> <script language="JavaScript" src="../JSClass/FusionCharts.js"></script> <script language="JavaScript" src="../JSClass/FusionChartsExportComponent.js"></script> </head> <body bgcolor="#ffffff"> <div id="chartdiv" align="center">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/Column2D.swf", "myChartId", "500", "300", "0", "1"); myChart.setDataURL("Data/Column2D.xml"); myChart.render("chartdiv"); </script> <div id="fcexpDiv" align="center">FusionCharts Export Handler Component</div> <script type="text/javascript"> var myExportComponent = new FusionChartsExportObject("fcExporter1", "../Charts/FCExporter.swf"); myExportComponent.Render("fcexpDiv"); </script> </body> </html> When I open the html in Firefox , I encounter the error: SecurityError: Error #2060: ??????:ExternalInterface ??? file:///D:/FusionCharts/FusionCharts_Evaluation/FusionCharts_Evaluation/Charts/FCExporter.swf ???? file:///D:/FusionCharts/FusionCharts_Evaluation/FusionCharts_Evaluation/Gallery/Column2D.html? at flash.external::ExternalInterface$/_initJS() at flash.external::ExternalInterface$/addCallback() at com.fusioncharts.exporter::FCExporter() Thanks a lot!
  4. I download FusionCharts v3 from this web. Does this version have export ability? If this version does not have this ability, how can I get FusionCharts v3.0.7 or FusionCharts v3.1 ? Thank you!
  5. Chart A xml: <chart palette='2' xAxisMinValue='0' xAxisMaxValue='100' yAxisMinValue='0' yAxisMaxValue='100' is3D='1' showFormBtn='1' viewMode='0' formAction='DataHandler.html' > <dataset seriesName='DS1'> <set x='12' y='79' width='70' height='56' name='Node 1' color='FE3233' id='1'/> <set x='59' y='15' width='40' height='56' name='Node 2' color='FE9191' id='2' > <set x='88' y='75' radius='37' shape='circle' name='Node 3' color='62D0FE' id='3' ></dataset></chart> I want to show attributes Curve of the three nodes on chart A, each curve is a fusionChart, such as the following image: I want to ask if FusionCharts support a chart nested in another? If can, How should I write the html? Thank you!