Rahul Kumar

L1 Moderators
  • Content count

    1,253
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Rahul Kumar

  1. Hi edgar, Could you please let us know which web part you are using?
  2. Hi Sandeep, Could you please let us know the SharePoint Server version and the OS which you are using, please also specify the Bitness information (32 Bit/64 Bit)?
  3. Hi All, Could you please download the updated version form http://www.fusioncharts.com/sharepoint/download/ , and share the result with us?
  4. Fusion Chart Web Part Connection Problem

    Hi Sohaib, I am afraid, FusionCharts for SharePoint does not support data handling using "web part connection" as of now.
  5. Hi Kevin, Thanks for the screenshot.
  6. Line Graph Series Order By Not Working

    Thanks for reporting the issue to us. We'll fix this issue in our next release.
  7. Drill Down Chart - Memory Leak Issue

    Thanks for the information. I'll ask our JavaScript and Flash team to look into it.
  8. Hi All, Thank you for your participation in FusionCharts for SharePoint beta. We are working on to fix these issue, and will update you once it is fixed and released. Meanwhile I request you all to please post the Stack Track information of the error that you are getting, this will be really helpful for us to debug the issue. You can follow the steps given below to get the stack trace: Browse to http://<sharepoint server>/Lists/FusionCharts_LogList/AllItems.aspx (see Screen 1)) with error and details by error (select “View Item” in row in log list (Screen 2 and 3)) Screen 1: Screen 2: Screen 3:
  9. Drill Down Chart - Memory Leak Issue

    Hi, Could you please update your Flash Player and try again?
  10. Drill Down Chart - Memory Leak Issue

    Hi, Could you please let us know the steps how to re-produce it?
  11. Hi Matt, Kevin We are looking into the issue, and get back to you soon.
  12. Charts Keep Disappearing In Updatepanel

    Hi, Could you please also send us the generated HTML code for both the conditions (1. Before Drill-Down, 2. After Drill-Down)?
  13. Sharepoint Rendering Issue

    Hi, I am afraid, currently FusionCharts for SharePoint works only in Root Site. We'll soon release an updated version which will work on Sub Site too.
  14. Charting Sharepoint List Data

    Hi, I am afraid, you have to use only FusionCharts specific XML to render the chart other XML format won't work.
  15. Stacked Chart, Newbie, Lost

    Hi, Could you please put mysql_data_seek($result,0); to rewind the query result in each function buildCategories and buildDatasets? e.g.: /*********************************************************************************************** * Function to build XML for categories * @param $result Database resource * @param $labelField Field name as String that contains value for chart category labels * * @return categories XML node */ function buildCategories ( $result, $labelField ) { $strXML = ""; if ($result) { $strXML = "<categories>"; mysql_data_seek($result,0); while($ors = mysql_fetch_array($result)) { $strXML .= "<category label='" . $ors[$labelField]. "'/>"; } $strXML .= "</categories>"; } return $strXML; } /*********************************************************************************************** * Function to build XML for datesets that would contain chart data * @param $result Database resource. The data should come ordered by a control break field which would require to identify datasets and set its value to dataset's series name * @param $valueField Field name as String that contains value for chart dataplots * @param $controlBreak Field name as String that contains value for chart dataplots * * @return Dataset XML node */ function buildDatasets ( $result, $valueField, $controlBreak ) { $strXML = ""; if ($result) { $controlBreakValue =""; mysql_data_seek($result,0); while( $ors = mysql_fetch_array($result) ) { if( $controlBreakValue != $ors[$controlBreak] ) { $controlBreakValue = $ors[$controlBreak]; $strXML .= ( $strXML =="" ? "" : "</dataset>") . ( "<dataset seriesName='" . $controlBreakValue . "'>" ) ; } $strXML .= "<set value='" . $ors[$valueField] . "'/>"; } $strXML .= "</dataset>"; } return $strXML; }
  16. Oomfo Animation Timings

    Hi James, I am afraid, it is not possible to adjust the timing of the "Animations" of the columns/bars/DataPlots in oomfo as of now. And since oomfo charts is an ActiveX control and PowerPoint does not allow its native Animation effects to be applied on any ActiveX controls so it is also not possible till now.
  17. Oomfo

    Hi, Exporting oomfo as Flash does not create XML file instead it passes it as a parameter to the SWF (using dataXML method).
  18. Hi, Could you please try completely uninstalling the Flash Player and then re-install it again? You can download the Flash Player uninstaller from http://download.macromedia.com/pub/flashplayer/current/uninstall_flash_player.exe
  19. IE8/FP10.1 JavaScript Memory Leak when using setDataXML

    Hi Tobias, Could you please try running the attached samples and check if there is any memory leakage issue, if it is working fine then please follow the same approach as provided in the sample. FusionCharts_Leakage_Solution.zip
  20. Error saving chart as jpg - client side

    Hi Sipes, You would need to use renderChart in the following way: Call renderChart("../../fusionCharts/charts/" & ChartType, "FusionCharts_1", strXML, "FactorySum", 600, 300,false, true) Hope this helps.
  21. Hi, Could you please make sure that the Flash Player (8 or above) is installed in your production environment (server)?
  22. Fusion Widgets displaying in Firefox

    Hi Bryan, We have found that the last two charts you are rendering with JavaScript method and top two charts (which is not getting rendered in FireFox) you are using ONLY <object> tags and <object> tag is not recognized by FF, so if you change your code and use only JavaScript method to render all the charts then it will render fine in all browsers.
  23. FusionCharts 2DPie With Legend - Demystified

    Hi, Could you please send us the code, so that we can dig the issue?
  24. JavaScript error Expected '('

    Hi, Could you please try using the attached FusionCharts.dll wrapper, and let us know the result? FusionCharts.zip
  25. Drag & Save charts with new values

    Hi Arun, What we understand from your query (please correct me if I am wrong) is you want a drag-able chart and on submitting the data should be save to the database. If this is the case then could you please take a look to our Drag-able charts which comes under our PowerChart package? Please refer to: http://www.fusioncharts.com/PowerCharts/gallery/ >> "Drag-able Chart" section.