-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi, Could you please try using ssgrid.swf (Grid Chart). This can be used to show summary data.
-
Cannot display Chinese Character properly
Rahul Kumar replied to johnshih's topic in FusionCharts and JSP
Hi, Could you please send us the code ? -
Draw two lines depending on two y-axes data using single multiseries line graph
Rahul Kumar replied to arif_qaisar's topic in FusionCharts and ASP
Hi, Could you please try using our MSCombiDY2D.swf (2D Dual Y Combination) Chart? For your reference I am attaching a sample XML with this post, please check it. data.xml -
Cannot display Chinese Character properly
Rahul Kumar replied to johnshih's topic in FusionCharts and JSP
Hi, Could you please try using the following code? ....... ....... .......... OutputStream outs = response.getOutputStream(); outs.write(new byte[]{(byte)0xEF, (byte)0xBB, (byte)0xBF}); outs.flush(); Writer writer = new OutputStreamWriter(outs); writer.append(XML string); // Put here your variable name that stores the XML. writer.flush(); -
Hi, I am afraid, it is not possible as of now.
-
Hi, I am sorry, it is not possible to rotate a Column 3D Chart to look like as a MSBar3D char.
-
Hi, Sorry, This feature is not supported as of now.
-
Example of Multiseries stacked column chart using asp and MS SQL
Rahul Kumar replied to annatink's topic in FusionCharts and ASP
Hi, You can find it in our blueprint applications. -
Hi, Could you please try using bgAlpha='100' along with bgColor='000000,000000' ?
-
Hi, I am attaching a simple working example of FusionCharts implementation through HTML file & using FusionCharts.js file, please execute the Column3D.html file & see if it works? Also please let us know which language you are using, if possible please post the sample code along with your post. NOTE: Run this sample in different browsers such as FF, IE, Opera, Google Chrome etc.
-
How to show both percentage and value in the label for Pie chart?
Rahul Kumar replied to Rahul Kumar's topic in General usage
Hi, I am afraid, currently FusionCharts do not support annotations. -
Hi, Could you please see this too http://www.fusioncharts.com/Licensing.asp
-
Hi, Please download the FusionCharts.js file with this post. Also let us know if this solves your issue. FusionCharts.js.txt
-
Hi, Could you please try using the following XML? <chart lowerLimit="0" upperLimit="79" palette="1" showTickMarks="0" showTickValues="0" baseFontColor="000000" pointerBgAlpha='0' pointerBorderAlpha='0' showValue='0' > <colorRange> <color minValue="0" maxValue="43" code="8BBA00" label="43" /> <color minValue="43" maxValue="69" code="FF654F" label="26" /> <color minValue="69" maxValue="79" code="FFFFFF" label="10" /> </colorRange> <pointers> <pointer value='1' /> </pointers> </chart>
-
set the distance between caption with the graph
Rahul Kumar replied to jiahui's topic in FusionCharts and ASP
Hi, Could you please try using captionPadding attribute in <chart> element? E.g.: <chart ...captionPadding='50' caption='Caption' subCaption='Sub Caption'...> <set ..../> <set ..../> <set ..../> </chart> -
Help on more than 1 set from DB and PHP
Rahul Kumar replied to efonseca's topic in FusionCharts and PHP
Hi, 1. Your XML should start with <graph> element, that is missing. 2. We have found that your XML contains a ? (Question mark) character, due to this you are getting the error, please remember XML should not contain any special character(s). Also please make sure that, if your Database contains UTF8 character then you are also getting the UTF8 chatacter in your HTML page too, and this UTF character is converted into a ? character, because you might have not saved that HTML/PHP file as UTF8 enabled. So, in order to work with that, please save your HTML/PHP file with UTF8 support. Also please check the code below: link = connectToDB();$strXML = "<graph decimalPrecision='0' rotateNames='0' xaxisname='Departamentos' yaxisname='Colaboradores' showBorder='0' showPercentageValues='0' showPercentageInLabel='0' >"; $strCat = "categories>"; $strTotDS = "dataset seriesname='Total'>"; $strAvalDS = "dataset seriesname='Avaliados'>"; $strQuery = "SELECT Dep, Count(*) AS Total, Count(DataAval) AS Avaliados FROM DAI_main GROUP BY Dep"; $result = mysql_query($strQuery) or die(mysql_error()); if ($result) { while($ors = mysql_fetch_array($result)) { strCat .= "<category label='" . $ors['Dep'] . "'/>"; strTotDS .= "<set value='" . $ors['Total'] . "' />"; strAvalDS .= "<set value='" . $ors['Avaliados'] . "'/>"; } } mysql_close($link); $strCat .= "</categories>"; $strTotDS .= "</dataset>"; $strAvalDS .= "</dataset>"; $strXML .= $strCat . $strTotDS . $strAvalDS; // String concatenation "." was missing. $strXML .= "</graph>"; echo renderChart("/chart/Charts/FCF_Column3D.swf", "", $strXML, "ChartId", 650, 450, false, false); The XML: <graph decimalPrecision='0' rotateNames='0' xaxisname='Departamentos' yaxisname='Colaboradores' showBorder='0' showPercentageValues='0' showPercentageInLabel='0' > <categories> <category label='AAD'/> <category label='CA?'/> <category label='CGT'/> <category label='CMP'/> <category label='CNT'/> <category label='COM'/> <category label='DAF'/> <category label='DCE'/> <category label='DGE'/> <category label='DID'/> <category label='DMN'/> <category label='GES'/> <category label='INF'/> <category label='LAB'/> <category label='OPA'/> <category label='QLA'/> <category label='RH'/> <category label='SSG'/> <category label='TSR'/> </categories> <dataset seriesname='Total'> <set value='1' /> <set value='2' /> <set value='2' /> <set value='2' /> <set value='4' /> <set value='45' /> <set value='1' /> <set value='3' /> <set value='1' /> <set value='4' /> <set value='29' /> <set value='1' /> <set value='2' /> <set value='9' /> <set value='29' /> <set value='2' /> <set value='3' /> <set value='2' /> <set value='2' /> </dataset> <dataset seriesname='Avaliados'> <set value='0'/> <set value='0'/> <set value='0'/> <set value='0'/> <set value='0'/> <set value='8'/> <set value='1'/> <set value='0'/> <set value='0'/> <set value='4'/> <set value='0'/> <set value='0'/> <set value='1'/> <set value='0'/> <set value='0'/> <set value='0'/> <set value='0'/> <set value='2'/> <set value='0'/> </dataset> </graph> -
Help on more than 1 set from DB and PHP
Rahul Kumar replied to efonseca's topic in FusionCharts and PHP
Hi, Could you please save the generated XML into a file & then post that file into this thread? Because we are not able to see the XML correctly. -
Long charts rendered with different background colors
Rahul Kumar replied to Rahul Kumar's topic in Bug Reports
Hi, Could you please post the chart image, chart version & if possible also the XML? It'll be easy for us to resolve the issue. NOTE: Please see the documentation at http://www.fusioncharts.com/docs/Contents/Debug/window.html to know how to get the chart version? -
Specific characters don't appear in a data's rotate Label
Rahul Kumar replied to Ivery's topic in Bug Reports
Hi, I am afraid, rotateLabel attribute is not supported with UTF-8 characters as of now. Could you please see the documentation for more information? -
Issue in IE while exporting the fusion chart to pdf
Rahul Kumar replied to sunshine's topic in FusionCharts and PHP
Hi, Could you please try using the attached file? It contains a sample application created in PHP, you need to execute BasicChart.php application. This application is design in such a way that, when charts finishes it rendering, Chart automatically invokes SaveAsImage event and calls FusionChartsSave.php (which is our core script, that handles rest of the requests) saves the chart image into a pre-defined file name, And after saving chart's image into the file it redirects to the previous location from where it were called. In your case you would need to add your redirect path to the Data.XML file like this: imageSaveURL='/php/FusionChartsSave.php?redirect=BasicExample/BasicChart.php?image=done' Also you can remove "image=done" because we have given this just to ensure that image saving method called just for one time. FusionCharts_ImageSaveInPHP.zip -
Internet Explorer can't open the site http://www.mysite.com/page_fusionwidgets.php. Operation Aborted
Rahul Kumar replied to wbdvlpr's topic in Using FusionWidgets XT
Hi, I am afraid; the issue you are facing is not related with FusionCharts. This is can be a IE7 issue, it occurs only is IE, if we try to append BODY element from script that isn't a direct child to the BODY element. There are some external posts regarding this issue with IE. http://weblogs.asp.net/infinitiesloop/archive/2006/11/02/Dealing-with-IE-_2600_quot_3B00_Operation-Aborted_2600_quot_3B002E00_-Or_2C00_-how-to-Crash-IE.aspx http://channel9.msdn.com/forums/Coffeehouse/210214-IE-Operation-Aborted/ http://drupal.org/node/125650 -
Print option of graph gives error
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and ASP.NET
Hi, Could you please make sure that you are using registerwithJS=1 ? JavaScript chart render method: <script type="text/javascript"> var chart = new FusionCharts("MSStackedColumn2DLineDY.swf", "ChartId", "600", "350", "0", "1"); chart.setDataURL("data.xml"); chart.render("chartdiv"); </script> ASP.NET C# chart render method: FusionCharts.RenderChart("../FusionCharts/ScrollLine2D.swf", "Data/ScrollLine2D.xml", "", "myFirst", "600", "350", false, true); -
javascript error on IE when using fusionmap.js
Rahul Kumar replied to mahesh's topic in Using FusionMaps XT
Hi, Could you please send us the code sample? -
Hi, Could you please try using the attached XML? data.xml
-
Problem with gantt charts and Flash Player 10
Rahul Kumar replied to Arindam's topic in Using FusionWidgets XT
Hi, Could you please send the code to [email protected].