victor.pereira

Members
  • Content count

    14
  • Joined

  • Last visited

About victor.pereira

  • Rank
    Junior Member
  • Birthday 02/26/1989

Profile Information

  • Gender
    Male
  • Location
    Rio de Janeiro - Brasil
  1. Mscombidy2D Canvas Background

    Thanks bindhu, it worked. Victor
  2. Html5 Js Chart Server Side Jpg Export Fails

    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
  3. Pure Html Js Chart Fails In Server Side Export..

    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
  4. Mscombidy2D Canvas Background

    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
  5. Upgrading From 3.2.1

    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.
  6. Export Several Charts To Single Page Of File

    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
  7. Java And Fusion Charts

    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
  8. Capturing Image Happens Only On Focus

    Hi, I didn't receive... Can u send again? try to this email: [email protected]. Thanks again.
  9. Browser Freezes When Rendering In Javascript

    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..
  10. Capturing Image Happens Only On Focus

    Hi Sashibhusan. Can u send me the scroll.js? [email protected] Thanks
  11. Javascript Render And Richfaces

    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
  12. Javascript Render And Richfaces

    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.
  13. Upgrading From 3.2.1

    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.
  14. Upgrading From 3.2.1

    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.