avefenix

Members
  • Content count

    13
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by avefenix

  1. How can I solve this problem on IExplorer, on Chrome I haven't this problem: Windows Internet Explorer Es posible que esta página web no funcione correctamente debido a errores Haga doble clic en el icono de adv. en Ia barra est. para ver este mens. en el fut. A FusionChart oject with the specified id myChartld already exists. Renaming it to chartobject—1 ‘ FusionCharts.js Línea: 27 Código: O Carácter 481 URI: http://127.O.O.1/sws/includes/fusion/charts/FusionCharts.js D Mostrar siempre este mensaje para los errores de páginas web [ Çopiar deL error ] a Ocultar detalles Cerrar The point is, the 90% users run IExplorer. [/font] var myChart = new FusionCharts( "includes/fusion/charts/Column3D.swf", "myChartId", "100%", "100%", "0", "1" ); I attach this graph on a div [/font] [font="arial, verdana, tahoma, sans-serif"] var myChart = new FusionCharts( "includes/fusion/charts/"+x+".swf", "myChartId", "100%", "100%", "0", "0" ); myChart.setXMLUrl("xml/"+edicion+"/"+folio+".G01.xml"); myChart.configureLink ([{ overlayButton: { message: 'Regresar' }}]); myChart.render("objId");[/font] [font="arial, verdana, tahoma, sans-serif"] [/font] [font="arial, verdana, tahoma, sans-serif"]<div id="objId" style="width: 100%; height: 100%; overflow: auto; display: none; font-family: Tahoma; font-size: 11px;"></div>[/font] [font="arial, verdana, tahoma, sans-serif"] Thanks.
  2. Hi, I have this code, but when I apply this on linkedchart XML, the graphic is reloaded completely, but I wish only change the actual graphic. For example: If I click in the graphic and showme a new graphic, I want to change only the actual graphic. Thanks. <html> <head> <script type="text/javascript" src="FusionCharts.js"></script> </head> <body> <input type="button" value="Bar" onClick="changeChart('bar')" > <input type="button" value="Pie" onClick="changeChart('pie')" > <div id="chartContainer">FusionCharts will load here</div> <script type="text/javascript"><!-- function changeChart(x) { var charts = { bar : "Bar2D.swf", pie : "Pie3D.swf"}; var chartXML =""; if( FusionCharts ("myChartId") ) { chartXML = FusionCharts ("myChartId").getXMLData(); FusionCharts ("myChartId").dispose(); } var myChart = new FusionCharts( charts[x.toLowerCase()], "myChartId", "400", "300", "0", "1" ); if(chartXML!="") myChart.setXMLData( chartXML ); else myChart.setXMLUrl( "Data.xml" ); myChart.render( "chartContainer" ); } <!--changeChart('line');--> // --> </script> </body> </html>
  3. Export Image With Javascript

    Is possible export with a call javascript. I see the example: [url="http://127.0.0.1/fusion3_2/FusionCharts%203.2.1/Code/ExportChartSamples/JavaScriptExport/ClientSideSimple.html"]Code/ExportChartSamples/JavaScriptExport/ClientSideSimple.html[/url] But I need a url and when I click this Url save the image. Is possible remove the next div <div id="fcexpDiv" align="center" >FusionCharts Export Handler Component</div> or can I emulate the click on the fcexpDiv with javascript? And is possible select on runtime the type image or pdf export? Thanks
  4. Is possible in a cylinder realtime put other message near or down of the value like a date or time? It is very necesary because when change the value of the cylinder, We dont know which is the time or date that change the graphic. I have a database with the value and the datetime of this value. I can does works the realtime simulteanly 5 cylinder. But I don't know how can put other mesage like attach image. Is possible? Thanks Your product is amazing. Manuel
  5. I found something like that I ask you. But, this is not downloable. The next Url have the main idea. http://www.fusioncharts.com/widgets/Demos/RealTimeJS/Index.html FusionWidgets v3 - Data-streaming chart + JavaScript integration demoIn this demo, we've integrated the real-time line chart from FusionWidgets v3 suite with JavaScript. Whenever the chart receives new data from the data-provider, it notifies JavaScript methods present in this page. The JavaScript methods then access the chart's data and present it in the HTML table below. Since the chart shows only most recent 15 data points, the table will show the same. Interactive features: Once the chart has received some values, click on a series name (Google/Dell) in legend to show/hide the dataset Right click on the chart to access the context menu for data-streaming charts How can i download the sample? Thanks
  6. Is possible order the values of XML file. I take a sample of you. <chart yAxisName='Sales Figure' caption='Top 5 Sales Person' numberPrefix='$' showBorder='1' imageSave='1'imageSaveURL='http://www.fusioncharts.com/ExportHandlers/PHP/_FCExporter.php'> <set label='Alex' value='25000' /> <set label='Mark' value='35000' /> <set label='David' value='42300' /> <set label='Graham' value='35300' /> <set label='John' value='31300' /> </chart> In this case I need order the values and the graphic show the next label with this order:First DavidSecond GrahamThird Graham..... There is a function by order asc or desc. Thanks. IS AMAZING YOUR PRODUCT!!! Best regards. Manuel
  7. Thank you, I follow your suggest and I will aply my own code. In a future version maybe you considerer put a Api in a fusioncharts for order asc or desc the values. I love fusioncharts. My best regards.