-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Number Format Problem In International Environment
Rahul Kumar replied to edgar's topic in Collabion Charts for SharePoint
Hi edgar, Could you please let us know which web part you are using? -
Fusioncharts For Sharepoint Beta Impression
Rahul Kumar replied to a topic in Collabion Charts for SharePoint
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)? -
Fusioncharts For Sharepoint Beta Impression
Rahul Kumar replied to a topic in Collabion Charts for SharePoint
Hi All, Could you please download the updated version form http://www.fusioncharts.com/sharepoint/download/ , and share the result with us? -
Fusion Chart Web Part Connection Problem
Rahul Kumar replied to Sohaib Khan's topic in Collabion Charts for SharePoint
Hi Sohaib, I am afraid, FusionCharts for SharePoint does not support data handling using "web part connection" as of now. -
Fusioncharts For Sharepoint Beta Impression
Rahul Kumar replied to a topic in Collabion Charts for SharePoint
Hi Kevin, Thanks for the screenshot. -
Thanks for reporting the issue to us. We'll fix this issue in our next release.
-
Thanks for the information. I'll ask our JavaScript and Flash team to look into it.
-
Fusioncharts For Sharepoint Beta Impression
Rahul Kumar replied to a topic in Collabion Charts for SharePoint
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: -
Hi, Could you please update your Flash Player and try again?
-
Hi, Could you please let us know the steps how to re-produce it?
-
Fusioncharts For Sharepoint Beta Impression
Rahul Kumar replied to a topic in Collabion Charts for SharePoint
Hi Matt, Kevin We are looking into the issue, and get back to you soon. -
Charts Keep Disappearing In Updatepanel
Rahul Kumar replied to fedorovmatt's topic in Javascript Problems
Hi, Could you please also send us the generated HTML code for both the conditions (1. Before Drill-Down, 2. After Drill-Down)? -
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.
-
Hi, I am afraid, you have to use only FusionCharts specific XML to render the chart other XML format won't work.
-
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; }
-
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.
-
Hi, Exporting oomfo as Flash does not create XML file instead it passes it as a parameter to the SWF (using dataXML method).
-
RunTime error 372: Faild to load controal 'FusionCharts' from FusionCharts.ocx
Rahul Kumar replied to bombell's topic in Installation and Upgrades
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 -
IE8/FP10.1 JavaScript Memory Leak when using setDataXML
Rahul Kumar replied to Rahul Kumar's topic in Bug Reports
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 -
Error saving chart as jpg - client side
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and ASP
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. -
console appliacation for Server side image saving
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and ASP.NET
Hi, Could you please make sure that the Flash Player (8 or above) is installed in your production environment (server)? -
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.
-
Hi, Could you please send us the code, so that we can dig the issue?
-
Hi, Could you please try using the attached FusionCharts.dll wrapper, and let us know the result? FusionCharts.zip
-
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.