victor.pereira
Members-
Content count
14 -
Joined
-
Last visited
Everything posted by victor.pereira
-
Hi, Is there a way to render the canvas background color in just one color? I uploaded an image with my chart. As u can see, the background color is rendered with two colors. Is there a way to render in just one? Thanks. Victor
-
Thanks bindhu, it worked. Victor
-
Hello, We use an older version of fusion charts, 3.2.1, and everything works fine. We wanted to upgrade our version to a newer one and buy the fusion charts, to take the trial messages off and get more support. We had two problems when we changed the libraries: 1) The flash charts are rendered unfocused and disproportionate. 2) As a workaround we tried to render the charts using javascript. They render right, but we can't export charts on server anymore. We use the java libraries avaliable on fusioncharts package to do so. The charts are not sent to our servlet to do the export, they call a fusioncharts site and download the image. Do anyone know why this happens? Searching on some forums, one user said that the fusioncharts team developed a library to render the charts on server, without the broser, using microsoft .Net. Is there a library to do this in java? Thanks.
-
Html5 Js Chart Server Side Jpg Export Fails
victor.pereira replied to Sundhar's topic in FusionCharts and JSP
I don't know if the FCExporter servlet is ready to export javascript charts. I just use it with flash charts. When u change the url to http://exports.highcharts.com it works because there is a php server that create the image from the svg. If you can get the svg string, why don't u create a solution to create the image on server? I started, but i couldn't finish it yet.. Victor -
Pure Html Js Chart Fails In Server Side Export..
victor.pereira replied to Sundhar's topic in General usage
I don't know if the FCExporter servlet is ready to export javascript charts. I just use it with flash charts. When u change the url to http://exports.highcharts.com it works because there is a php server that create the image from the svg. If you can get the svg string, why don't u create a solution to create the image on server? I started, but i couldn't finish it yet.. Victor -
I find out whats was wrong. I was using these parameters to FusionCharts constructor: var chart_GraficoConsumoEmpresa = new FusionCharts('grafico/FusionCharts/MSCombiDY2D.swf?ChartNoDataText=Sem Dados&XMLLoadingText=Por favor, aguarde', 'GraficoConsumoEmpresa', '700', '500', '0', '1', '', '', '', '', ''); I changed to this: var chart_GraficoConsumoEmpresa = new FusionCharts('grafico/FusionCharts/MSCombiDY2D.swf?ChartNoDataText=Sem Dados&XMLLoadingText=Por favor, aguarde', 'GraficoConsumoEmpresa', '700', '500', '0', '1'); without all the emptys parameters, and it works.
-
Export Several Charts To Single Page Of File
victor.pereira replied to Albertos's topic in FusionCharts and JSP
I don't think that possible. U can export the images to your server, using server-side export, and then create a pdf with all charts togheter. Victor -
Hi sammer. it's possible. http://docs.fusioncharts.com/charts/ Go to the section "Server-side exporting". There are examples and how u configure in a j2ee enviroment. The jars are in FusionCharts package. Do u render the chart in javascript or flash? If it's javascript, the export is different. FusionCharts team uses a php server to render the image. I started to make a solution for java, but i coulnd't finish it. If u render the charts in flash u have no problems. The export works well. Victor
-
Capturing Image Happens Only On Focus
victor.pereira replied to fusion_freak_'s topic in FusionCharts and ASP.NET
Hi, I didn't receive... Can u send again? try to this email: [email protected]. Thanks again. -
Browser Freezes When Rendering In Javascript
victor.pereira replied to warwickmc's topic in Javascript Problems
Hi Sashibhusan, What do you mean with "isolate jQuery 1.3"? In my case, I use richfaces, and it comes with jQuery 1.3.2. I can't control when it's added in the page. Richfaces controls this. All mu FusionCharts javascript files are in a folder, and i load the FusionCharts.js in my page. It automatically load the others? And how FusionCharts use jQuery 1.7.1 reference and not jQuery 1.3.2? Thanks.. -
Hi, I use fusioncharts for a while, and i always rendered my charts using flash. Now i need to render them using javascript, and i'm having problems with jQuery compatibility. The version of jQuery in Richfaces is 1.3.2 The newer version of fusioncharts needs the 1.7 version. I'm trying to use both version at the same time, but am having difficulties. There's a way to pass the jQuery reference object to fusioncharts javascript API? When i change the references, the chart is rendered, but all the richfaces effects and ajax doesn't work anymore. Thanks.
-
Capturing Image Happens Only On Focus
victor.pereira replied to fusion_freak_'s topic in FusionCharts and ASP.NET
Hi Sashibhusan. Can u send me the scroll.js? [email protected] Thanks -
Javascript Render And Richfaces
victor.pereira replied to victor.pereira's topic in FusionCharts and JSP
I'm using the 3.2.3 version and Richfaces 3.3. When i do this: var chart_GraficoConsumoEmpresa = new FusionCharts('grafico/FusionCharts/MSCombiDY2D.swf?ChartNoDataText=Sem Dados&XMLLoadingText=Por favor, aguarde', 'GraficoConsumoEmpresa', '700', '500', '0', '0', '', '', '', '', ''); chart_GraficoConsumoEmpresa.setDataXML("<graph></graph>"); chart_GraficoConsumoEmpresa.render('GraficoConsumoEmpresaDiv'); I get the error: Uncaught RangeError: Maximum call stack size exceeded The error occurs because of the version of jQuery presents in Richfaces, that is 1.3.2. When i load the new version, it works, but richfaces components stop working. Is there a way to use and older version to render fusioncharts charts or pass the newer version to javascript sources? I'm trying to use two version of jQuery in my app, this way: http://tudip.blogspot.com.br/2012/04/use-newer-version-of-jquery-with.html but with no success. Thanks -
Hi Sashibhusan Thanks for answer. The current version i'm using is: @version fusioncharts/3.2.3-sr2.6105 With this version the charts are not rendered the way they should. I was using the version: @version 3.2.1-release With this version all charts works fine. I'm attaching two screenshots fromt he charts. I did not change the xml data. Do u know what can cause this? Thanks.