-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi, I am afraid, we do not have the XSD-Schema file, but we are working on it and will be available very soon.
-
Hi, Please send the final HTML source that is getting rendered.
-
Hi, Could you please try using yAxisValueDecimals='0' in <chart> element?
-
Annotation not appearing in Angular chart
Rahul Kumar replied to kamalshah20's topic in Using FusionWidgets XT
Hi, Could you please try the following XML? -
Multidimensional Dimensional Array from MySQL
Rahul Kumar replied to billsinc's topic in FusionCharts and PHP
Hi, addDatasetsFromDatabase(resource $query_result, string $ctrlField, string $valueField[, array $datasetParamArray, string $link]) : FC->addDatasetsFromDatabase() fetches all datas from the database with the control break field specified at the second parameter, also this $ctrlField will be the seriesName for the chart, and $valueField will be the <set>'s value inside that datasets. Also could you please make sure that you have more than one record in the $ctrlField? Please see the documentation at http://www.fusioncharts.com/docs/Contents/PHPClassAPI/Functions.html -
Hi, Sorry, it is not possible as of now.
-
Hi, I am afraid, it is not possible as of now.
-
How to hide chart text in a bulb chart?
Rahul Kumar replied to acb2's topic in Using FusionWidgets XT
Hi, You would need to make chart transparent, for that please use chart1.setTransparent(true); in the javascript tag and use bgAlpha='0,0' attribute. Sample: <script type="text/javascript"> var chart = new FusionCharts("../Charts/Bar2D.swf", "ChartId", "300", "350", "0", "0"); chart.setDataURL("Data/Bar2D.xml"); chart.setTransparent(true); chart.render("chartdiv"); </script> -
Hi, I am afraid, it is not possible as of now.
-
Hi, I am afraid, it is not possible as of now.
-
Hi, Could you please use plotSpacePercent='{Number}' in <chart> element and try again?
-
Multidimensional Dimensional Array from MySQL
Rahul Kumar replied to billsinc's topic in FusionCharts and PHP
Hi, Could you please send us the generated XML? -
Hi, Could you please make the chart transparent and try again? You can do it as follow: var chart1 = new FusionCharts("FusionCharts/Pie3D.swf", "chart1Id", "400", "300", "0", "1"); chart1.setDataXML("<chart>.......</chart>"); chart1.setTransparent(true); chart1.render("divname);
-
Hi, I am afraid, It is not possible as of now.
-
control go on FusionChartsSave.jsp and it save this jsp instead of fusion chart image.
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and JSP
Hi, Please see this post: http://www.fusioncharts.com/forum/FindPost12207.aspx -
what is the XML if I want to draw this kind of chart?
Rahul Kumar replied to analisn's topic in XML Issue
Hi, To add label you would need to use label attribute in <set> element. <chart plotSpacePercent='0' divLineIsDashed='1' > <set value='19800' label='5' /> <vline color='C6C6C6' dashed='1' /> <set value='21800' label='10' /> <vline color='C6C6C6' dashed='1' /> <set value='23800' label='15' /> <vline color='C6C6C6' dashed='1' /> <set value='29600' label='20' /> <vline color='C6C6C6' dashed='1' /> <set value='27600' label='25' /> <vline color='C6C6C6' dashed='1' /> <set value='31800' label='30' /> <vline color='C6C6C6' dashed='1' /> <set value='39700' label='35' /> <vline color='C6C6C6' dashed='1' /> <set value='37800' label='40' /> <vline color='C6C6C6' dashed='1' /> <set value='21900' label='45' /> <vline color='C6C6C6' dashed='1' /> <set value='32900' label='50' /> <vline color='C6C6C6' dashed='1' /> <set value='39800' label='55' /> <vline color='C6C6C6' dashed='1' /> <set value='17400' label='60' /> </chart> -
Microsoft JScript runtime error: Object required (IE7)
Rahul Kumar replied to Rahul Kumar's topic in Bug Reports
Hi, Could you please send us your code at [email protected] -
Hi Vipin, FusionCharts V3.0.7's image saving feature requires a server to call its image generation code, and in your case you are using FusionChartsSave.jsp, so it should also be called from server. Your XML should be like the following:
-
what is the XML if I want to draw this kind of chart?
Rahul Kumar replied to analisn's topic in XML Issue
Hi, Could you please try using this XML with Column3d.swf file? -
Hi, Could you please update your chart once and try again?
-
Drill-down Javascript problem in version 3.1
Rahul Kumar replied to sahayaraj123's topic in Bug Reports
Hi, If you are running your code locally like (C:abcdmyhtml.html) then you would need to set your Flash Player's Global Security setting. Please see this http://www.fusioncharts.com/forum/FindPost8077.aspxfor more information. -
Hi, I am afraid, it is not possible.
-
Hi, Could you please let us know that you are running your code locally (C: or D:) or from a server (like, IIS, Apache, etc...). Because image saving feature will work only from server side if you are using FusionCharts V3.0.6 or V3.0.7.
-
Hi, Could you please let us know that you are running your code locally (C: or D:) or from a server (like, IIS, Apache, etc...).
-
Hi, You would need to set these attributes imageSave='1' imageSaveURL='FusionCImageSaveImageSavingFusionChartsSave.jsp' in XML file i.e. xmlfile.xml not in jsp file.