amitporeciti

Members
  • Content count

    14
  • Joined

  • Last visited

Everything posted by amitporeciti

  1. IS this feature available as of now ? or is there a workaround for this ?
  2. Hi, I am facing a wierdproblem while exporting charts using server side method. I am using Fusioncharts V.3.2.2 in my web application deployed on Weblogic server. I am doing serverside export of charts which i invoke using exportChart() method from my javascript and facing this wierd problem while exporting the charts.I am not facingthis on all enviroemnts in spite the factthat the code is absoultly the same, sceraio, data is absoultly the same. I get followingexception from Image Generator Jul 12, 2012 3:27:22AM com.fusioncharts.exporter.generators.ImageGenerator getChartImage INFO: Creating theChart image Jul 12, 2012 3:27:22AM com.fusioncharts.exporter.generators.ImageGenerator getChartImage SEVERE: Image data isnot in proper format:java.lang.IllegalArgumentException: Unsupported data type225 Jul 12, 2012 3:27:22AM com.fusioncharts.exporter.generators.ImageGenerator getChartImage INFO: Creating the Chartimage Jul 12, 2012 3:27:22AM com.fusioncharts.exporter.generators.ImageGenerator getChartImage SEVERE: Image data isnot in proper format:java.lang.IllegalArgumentException: Unsupported data type225 Jul 12, 2012 3:27:22AM com.fusioncharts.exporter.generators.ImageGenerator getChartImage The moment, I restartmy server, the same chart export works absoultely fine and then after somehours or days, I get the same error again. I am not able toreproduce it even at my will and wish. I had a look at thesource code where this exception is beign thrown from ImageGeneratorgetChartImage(), and it seems that this exception is being thrown fromBufferedImage() but why when and how is a bg mystery for me. Request you to givesome pointers, I am not able to find anything on this error in your forums oranywhere else on the net.
  3. Performance Issue In Ie.

    Hi, We have a performance issue in IE 7 and 8 with ~10 charts. It performs very slow( using the latest version). Do we have the prevision where we can render the images on the serverside and transport it to the browser with the tooltip to show up on the images ?
  4. Performance Issue In Ie.

    the data points are not exceeding 1000 its ~ 200 per chart for 10 charts on the same page. So its 200 per chart. Let me know if you are not clear.
  5. Multiple Charts On A Page.

    from your example in the link below for each ==> new FusionCharts("FusionCharts/Column2D.swf" Its making a call on the server for for each call even though if it the same swf file. why do they make a server hit for each "Column2D.swf" ? http://docs.fusioncharts.com/charts/contents/FirstChart/MultipleCharts.html
  6. Multiple Charts On A Page.

    We are having 10 charts of same type which we are creating using below. new FusionCharts("FusionCharts/Column2D.swf Now for each "new FusionCharts()" for the same chart type its making a server hit to get the chart. The chart type is same for all the 10 charts so its the same swf file then why its making 10 hits to the server to get the same swf file ?
  7. Performance Issue In Ie.

  8. Changing Data On A Chart.

    I am not able to change the data on the chart looking at the example attached is my code. below is the data used. var dataString ='<chart caption="Product-wise Sales" xAxisName="Day" canvasBgColor="E889E6" canvasBorderColor="B38CB0" canvasBorderThickness="1" baseFontColor="B38CB0" \n\ numberPrefix="$" decimalPrecision="0" decimalSeparator="," rotateLabels="1" slantLabels="1" toolTipBorderColor="FFFFFF" showValues="0" legendBorderColor="B38CB0"> \n\ \n\ <categories>\n\ <category label="1" />\n\ <category label="2" />\n\ <category label="3" />\n\ <category label="4" />\n\ <category label="5" />\n\ <category label="6" />\n\ <category label="7" />\n\ <category label="8" />\n\ <category label="9" />\n\ <category label="10" />\n\ <category label="11" />\n\ <category label="12" />\n\ <category label="13" />\n\ <category label="14" />\n\ <category label="15" />\n\ <category label="16" />\n\ <category label="17" />\n\ <category label="18" />\n\ <category label="19" />\n\ <category label="20" />\n\ <category label="21" />\n\ <category label="22" />\n\ <category label="23" />\n\ <category label="24" />\n\ <category label="25" />\n\ <category label="26" />\n\ <category label="27" />\n\ <category label="28" />\n\ <category label="29" />\n\ <category label="30" />\n\ <category label="31" /> \n\ </categories>\n\ \n\ <dataset seriesName="Product A" color="049250">\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set value="57000" />\n\ <set value="58995" />\n\ <set value="61119" />\n\ <set value="63502" />\n\ <set value="65662" />\n\ <set value="68157" />\n\ <set value="69997" />\n\ <set value="72797" />\n\ <set value="75272" />\n\ <set value="77455" />\n\ <set value="79546" />\n\ <set value="80739" />\n\ <set value="82273" />\n\ <set value="84001" />\n\ <set value="85849" />\n\ <set value="85868" />\n\ <set value="87843" />\n\ <set value="90039" />\n\ <set value="61452" />\n\ <set value="64463" />\n\ <set value="65945" />\n\ <set value="68056" />\n\ <set value="70914" />\n\ <set value="73467" />\n\ <set value="76332" />\n\ <set value="78927" />\n\ <set value="81927" /> \n\ </dataset>\n\ \n\ <dataset seriesName="Product B" color="cf0a37">\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set value="15500" />\n\ <set value="16361" />\n\ <set value="17212" />\n\ <set value="18443" />\n\ <set value="19270" />\n\ <set value="20782" />\n\ <set value="21128" />\n\ <set value="22606" />\n\ <set value="23915" />\n\ <set value="24982" />\n\ <set value="26436" />\n\ <set value="26810" />\n\ <set value="27421" />\n\ <set value="28162" />\n\ <set value="30000" />\n\ <set value="28965" />\n\ <set value="29767" />\n\ <set value="29559" />\n\ <set value="26150" />\n\ <set value="28349" />\n\ <set value="28676" />\n\ <set value="29221" />\n\ <set value="30681" />\n\ <set value="31665" />\n\ <set value="33109" />\n\ <set value="34062" />\n\ <set value="35849" /> \n\ </dataset>\n\ \n\ <dataset seriesName="Product C" color="FEF000">\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set value="38000" />\n\ <set value="39330" />\n\ <set value="40746" />\n\ <set value="42335" />\n\ <set value="43774" />\n\ <set value="45438" />\n\ <set value="46665" />\n\ <set value="48531" />\n\ <set value="50181" />\n\ <set value="51637" />\n\ <set value="53031" />\n\ <set value="53826" />\n\ <set value="54849" />\n\ <set value="56001" />\n\ <set value="57233" />\n\ <set value="57245" />\n\ <set value="58562" />\n\ <set value="60026" />\n\ <set value="40968" />\n\ <set value="42975" />\n\ <set value="43964" />\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ </dataset>\n\ \n\ <dataset seriesName="Product D" color="F2572E">\n\ \n\ <set value="10494" />\n\ <set value="29221" />\n\ <set value="30681" />\n\ <set value="31665" />\n\ <set value="33109" />\n\ <set value="34062" />\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ </dataset>\n\ \n\ </chart>'; var dataString1 ='<chart caption="Product-wise Sales" xAxisName="Day" canvasBgColor="E7D9E6" canvasBorderColor="B38CB0" canvasBorderThickness="1" baseFontColor="B38CB0" \n\ numberPrefix="$" decimalPrecision="0" decimalSeparator="," rotateLabels="1" slantLabels="1" toolTipBorderColor="FFFFFF" showValues="0" legendBorderColor="B38CB0"> \n\ \n\ <categories>\n\ <category label="1" />\n\ <category label="2" />\n\ <category label="3" />\n\ <category label="4" />\n\ <category label="5" />\n\ <category label="6" />\n\ <category label="7" />\n\ <category label="8" />\n\ <category label="9" />\n\ <category label="10" />\n\ <category label="11" />\n\ <category label="12" />\n\ <category label="13" />\n\ <category label="14" />\n\ <category label="15" />\n\ <category label="16" />\n\ <category label="17" />\n\ <category label="18" />\n\ <category label="19" />\n\ <category label="20" />\n\ <category label="21" />\n\ <category label="22" />\n\ <category label="23" />\n\ <category label="24" />\n\ <category label="25" />\n\ <category label="26" />\n\ <category label="27" />\n\ <category label="28" />\n\ <category label="29" />\n\ <category label="30" />\n\ <category label="31" /> \n\ </categories>\n\ \n\ <dataset seriesName="Product F" color="049250">\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set value="57000" />\n\ <set value="58995" />\n\ <set value="61119" />\n\ <set value="63502" />\n\ <set value="65662" />\n\ <set value="68157" />\n\ <set value="69997" />\n\ <set value="72797" />\n\ <set value="75272" />\n\ <set value="77455" />\n\ <set value="79546" />\n\ <set value="80739" />\n\ <set value="82273" />\n\ <set value="84001" />\n\ <set value="85849" />\n\ <set value="85868" />\n\ <set value="87843" />\n\ <set value="90039" />\n\ <set value="61452" />\n\ <set value="64463" />\n\ <set value="65945" />\n\ <set value="68056" />\n\ <set value="70914" />\n\ <set value="73467" />\n\ <set value="76332" />\n\ <set value="78927" />\n\ <set value="81927" /> \n\ </dataset>\n\ \n\ <dataset seriesName="Product Y" color="cf0a37">\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set value="15500" />\n\ <set value="16361" />\n\ <set value="17212" />\n\ <set value="18443" />\n\ <set value="19270" />\n\ <set value="20782" />\n\ <set value="21128" />\n\ <set value="22606" />\n\ <set value="23915" />\n\ <set value="24982" />\n\ <set value="26436" />\n\ <set value="26810" />\n\ <set value="27421" />\n\ <set value="28162" />\n\ <set value="30000" />\n\ <set value="28965" />\n\ <set value="29767" />\n\ <set value="29559" />\n\ <set value="26150" />\n\ <set value="28349" />\n\ <set value="28676" />\n\ <set value="29221" />\n\ <set value="30681" />\n\ <set value="31665" />\n\ <set value="33109" />\n\ <set value="34062" />\n\ <set value="35849" /> \n\ </dataset>\n\ \n\ <dataset seriesName="Product L" color="FEF000">\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set value="38000" />\n\ <set value="39330" />\n\ <set value="40746" />\n\ <set value="42335" />\n\ <set value="43774" />\n\ <set value="45438" />\n\ <set value="46665" />\n\ <set value="48531" />\n\ <set value="50181" />\n\ <set value="51637" />\n\ <set value="53031" />\n\ <set value="53826" />\n\ <set value="54849" />\n\ <set value="56001" />\n\ <set value="57233" />\n\ <set value="57245" />\n\ <set value="58562" />\n\ <set value="60026" />\n\ <set value="40968" />\n\ <set value="42975" />\n\ <set value="43964" />\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ <set />\n\ </dataset>\n\ \n\ <dataset seriesName="Product S" color="F2572E">\n\ \n\ <set value="10494" />\n\ <set value="29221" />\n\ <set value="30681" />\n\ <set value="31665" />\n\ <set value="33109" />\n\ <set value="34062" />\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ <set value="0"/>\n\ </dataset>\n\ \n\ </chart>'; StArea2D3.html
  9. Changing Data On A Chart.

    There are no errors in the console. I have already copied the input string in my first query. you can use it.
  10. Performance Issue In Ie.

    Any update ?
  11. Performance Issue In Ie.

    Hi, Sorry, I cannot provide the url sample link out in the internet. If you can provide me the link for a page with more than 10 charts( ~ 100-200 data points) with the source code that would be great. Thanks, Amit
  12. is Fusion Chart XT = Fusion Chart 3.2.2 ? I am trying to get the latest version for fusion chart. want to know if the above 2 version is same ?
  13. Stackcolumn2D Bar Coror

    How to use single color on the Stack column. I want to get rid of the faded/gradient look. Current image attached.