-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Hi Ramesh, As of now, we do not have any attribute which scrolls chart position to another, so it could not be possible, even if you are invoking it through JavaScript.
-
Foreign and international characters don't show up right in Fusion Maps
Rahul Kumar replied to Rahul Kumar's topic in Bug Reports
Hi, We would require some more information: 1. Language which you are using? 2. Method (dataURL or dataXML)? -
Hi, I am sorry, this is not possible.
-
How to print multiple FusionCharts.
Rahul Kumar replied to Hovhannes's topic in FusionCharts and JSP
Hi, Printing multiple charts from the context menu might not be possible. You could however, try using the javascript print method multiple times. (once for each chart.) . Note: Printing multiple charts in this way, has not been tested. Please see this: http://www.fusioncharts.com/Docs/Contents/JS_print.html -
Save Image of chart created programmatically with AS2
Rahul Kumar replied to FusionCharts Support's topic in General usage
Hi, could you please try configuring your Flash Player Global setting once? Please visit these location to get more information. http://www.fusioncharts.com/forum/Topic5009-47-1.aspx http://www.fusioncharts.com/forum/FindPost8077.aspx -
Weird issue rendering multiple charts
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and PHP
Hi, Thanks for the code. We have found the issue, which is you are not using any unique id for the chart, infact there is no any chart id provided. The parameter for renderChart function is as below: // $chartSWF - SWF File Name (and Path) of the chart which you intend to plot// $strURL - If you intend to use dataURL method for this chart, pass the URL as this parameter. Else, set it to "" (in case of dataXML method) // $strXML - If you intend to use dataXML method for this chart, pass the XML data as this parameter. Else, set it to "" (in case of dataURL method) // $chartId - Id for the chart, using which it will be recognized in the HTML page. Each chart on the page needs to have a unique Id. // $chartWidth - Intended width for the chart (in pixels) // $chartHeight - Intended height for the chart (in pixels) // $debugMode - Whether to start the chart in debug mode // $registerWithJS - Whether to ask chart to register itself with JavaScript function renderChart($chartSWF, $strURL, $strXML, $chartId, $chartWidth, $chartHeight, $debugMode, $registerWithJS) {..........} Following is the function that you are using to render the chart: echo renderChart("Charts/ScrollLine2D.swf", "", $strXML, "", "725", 200, 0, false); You would need to modify your code as given below: Consider this code for Chart No: 1 echo renderChart("Charts/ScrollLine2D.swf", "", $strXML, "chart1", 725, 200, false, false); Consider this code for Chart No: 2 echo renderChart("Charts/ScrollLine2D.swf", "", $strXML, "chart2", 725, 200, false, false); Consider this code for Chart No: 3 echo renderChart("Charts/ScrollLine2D.swf", "", $strXML, "chart3", 725, 200, false, false); Consider this code for Chart No: 4 echo renderChart("Charts/ScrollLine2D.swf", "", $strXML, "chart4", 725, 200, false, false); Consider this code for Chart No: 5echo renderChart("Charts/ScrollLine2D.swf", "", $strXML, "chart5", 725, 200, false, false); -
Hi, Could you please send your requirements to our support at [email protected]
-
Smarter smart labels for pie charts
Rahul Kumar replied to tiago_simoes's topic in Suggestions & Requests
Hi, I am sorry, adding of ellipsis at the end of label text is not supported as of now. Also, currently to get it work, you would need to increase the chart size, because FusionCharts reserves/uses minimum of 20% space from chartWidth/chartHeight to render the elements, otherwise smaller than this will make chart distorted. -
Weird issue rendering multiple charts
Rahul Kumar replied to Rahul Kumar's topic in FusionCharts and PHP
Hi, Could you please send us the code? -
dataURL over HTTPS in IE using sessions
Rahul Kumar replied to Rasmus's topic in FusionCharts and PHP
Hi, Thanks for sharing this useful information to us. -
Where is the MSCombi3D's documentation?
Rahul Kumar replied to Rahul Kumar's topic in Suggestions & Requests
Hi, Could you please try this link? http://www.fusioncharts.com/docs/Contents/ChartSS/Combi3D.html -
Hi, You could read our documentation here http://www.fusioncharts.com/free/docs
-
Changing hight of bar on combination chart - line and bar chart
Rahul Kumar replied to mysky's topic in General usage
Hi, I am sorry, to changing the bar height in chart(s) is not supported as of now. But this can be a solution that, If you try to increase the Primary Y Axis Maximum value ( yAxisMaxValue='value' ) to some larger value than the current value then bar'll automatically adjust its height accordingly, & it appears to be smaller than the previous one. Example: Before (default): <chart caption='Monthly Unit Sales' xAxisName='Month' yAxisName='Units' showValues='0' decimals='0' formatNumberScale='0'><set label='Jan' value='462' /> <set label='Feb' value='857' /> <set label='Mar' value='671' /> <set label='Apr' value='494' /> </chart> After (using yAxisMaxValue attribute): <chart yAxisMaxValue='1500' caption='Monthly Unit Sales' xAxisName='Month' yAxisName='Units' showValues='0' decimals='0' formatNumberScale='0'><set label='Jan' value='462' /> <set label='Feb' value='857' /> <set label='Mar' value='671' /> <set label='Apr' value='494' /> </chart> -
Translate some messages like "No data to display"
Rahul Kumar replied to Rahul Kumar's topic in General usage
Hi, There is an option by which you could change chart message texts to the message that you want. Example: <script type="text/javascript"> var chart = new FusionCharts("../Charts/Column2D.swf?ChartNoDataText=Pas de donn -
Using FusionCharts with MOSS[Sharepoint] as webpart
Rahul Kumar replied to Sudheer's topic in General usage
Hi, It is still in development process. -
Switch "Enable drag"/"Enable link" by JavaScript
Rahul Kumar replied to Rahul Kumar's topic in Using PowerCharts XT
Hi, I am afraid, Enable drag/Enable link is not exposed to JavaScript. -
Hi, I am afraid, we don't have any inverse bar chart as of now.
-
Hi, If you are using FusionCharts Free then you would need to use parentYAxis='S' numberPrefix='$' attributes in <dataset> element. Example: <dataset seriesname='Amount' showValues='0' color='AFD8F8' parentYAxis='S' numberPrefix='%'>
-
Gantt chart: chart is not presented correctly
Rahul Kumar replied to [email protected]'s topic in Bug Reports
Hi, The issue might be that, you are creating the div dynamically and immediately you are rendering the chart, so at this instance chart is not getting div width, in result using 0 for width. -
Hi, I am sorry, this feature is not supported as of now.
-
Overlapping X axis names in Bar Chart due to long name for one of the Category names
Rahul Kumar replied to Vijay's topic in Bug Reports
Hi, I am afraid, FusionCharts Free does not supports name/label wrapping feature However, there is an option to rotate names/labes, you can do so by using rotateNames='1' attribute in <graph....rotateNames='1' ...> element. -
Valid XHTML 1.0 Strict Flash Object Code
Rahul Kumar replied to Rahul Kumar's topic in Suggestions & Requests
Hi, Thanks for sharing your code with us. -
Hi, Could you please try using sNumberPrefix instead of SYnumberPrifix? Also please read the documentation at : http://www.fusioncharts.com/docs/Contents/ChartSS/StCol3DLineDY.html and scroll to Number Formatting section.
-
Hi, Could you please try using ' ?