-
Content count
1,122 -
Joined
-
Last visited
-
Days Won
7
Everything posted by Swarnam
-
Hi Shreyas, Please refer to the following forum post: http://forum.fusioncharts.com/topic/13165-linebar-chart-not-showing-legend-if-data-not-available/page__pid__51728#entry51728
-
Hi Victor, Applying different font color through font tag for displayValue will not work with Flash charts. However, same can be achieved using JavaScript charts. Please find the modified XML and screenshot attached. Hope this helps. Data(1).xml
-
Hey, Please refer to the following Forum post: http://forum.fusioncharts.com/topic/11924-export-to-pdf/
-
Network Chart Export Problem (Capturing The Data Till 99%)
Swarnam replied to mt25's topic in Bug Reports
Hi, Can you please share the sample code for further testing? -
Angular Gauge Labels Not Displaying (Javascript Renderer)
Swarnam replied to PUI's topic in Bug Reports
-
Hi Deepti, No, we do not currently support any attribute to control the animation in JavaScript charts. Hope this helps.
-
Hi Nanda, Can you please share the XML code? Also, please ensure "setAdaptiveYMin" as been set to '1' in the chart element.
-
Fix Suggestion: Chart Requires Scrolling On Ipad And Iphone
Swarnam replied to ubercool's topic in General usage
Hi, Apologies for the delayed response. http://www.michaeltchong.com/son-i-am-disappoint-meme/ >>Using iPad, the charts renders without any data points is due to compatibility issue between jQuery 1.8.0 and FusionCharts XT SR3 version. However, we are glad to let you know this issue has been fixed in our latest release of FusionCharts. Can you please try upgrading to the latest version of FusionCharts XT SR5? Please refer to our "Version History" at: http://docs.fusioncharts.com/charts/contents/Introduction/WhatsNew32.html Please read more at : http://forum.fusioncharts.com/topic/12300-datapoints-do-not-render-on-jquery-180/ Hope this helps. -
Hi, I'm afraid, setting different colors to the primary/secondary Y axis name are not supported currently.
-
Hi Chris, Apologies for the delayed response. Please try setting "plotFillAlpha" attribute as zero in the chart element along with " plotBorderAlpha" attribute set to 100 in the respective dataset element. Please find the attached screenshot and XML. Hope this helps. radar.xml
-
Hey, Please refer to the forum post: http://forum.fusioncharts.com/topic/13116-stacked-2d-chart/
-
Hey, Please refer to forum post link: http://forum.fusioncharts.com/topic/13139-can-we-make-dragnode-chart-clickable/page__pid__51548#entry51548
-
Hi Senthil, I'm afraid, it is not possible to define styles and data in different XML.
-
-
Hi Abhijit, I'm afraid, Column charts does not support zooming functionality currently.
-
Why Chrome Cannot Fetch Data By Url But Ie Can With Same Js Codes?
Swarnam replied to IvanLiu's topic in General usage
-
Why Chrome Cannot Fetch Data By Url But Ie Can With Same Js Codes?
Swarnam replied to IvanLiu's topic in General usage
Hey, Chrome browser does not support fetching data from a external file while running locally. Many browsers restrict JavaScript from accessing local file system owing to security reasons. The charts, when running locally, will not be able to access data provided as a URL. If you run the files from a server, it will run absolutely fine, as the data is then read and streamed by the server, without the need for JavaScript to directly access local file system. While running locally, you would need to provide the data as string (using the Data String method), it works fine. Hope this helps. -
Server Side Export Using Fusion Charts-Urgent Help Needed
Swarnam replied to shahv's topic in General usage
Hey, Please refer to the following forum thread: http://forum.fusioncharts.com/topic/13108-server-side-export-using-fusion-charts-urgent-help-needed/page__gopid__51476#entry51476 -
Server Side Export Using Fusion Charts-Urgent Help Needed
Swarnam replied to shahv's topic in General usage
Hi Vaishali, FusionCharts XT does not support exporting of charts without rendering in the browser. However, please note our developers have created .NET based Image Saver assembly which export the charts directly as images(JPG/JPEG/PNG directly) without rendering it in the browser and does not support saving chart's image as PDF.. This assembly works only using .Net framework of Windows. This is an internal implementation, which is not included and/or associated with the FusionCharts XT pack. For receiving the same, drop us a mail requesting for this assembly at support[@]fusioncharts.com. Hope this helps. -
Hey, Apologies for the delayed response. FCMap_WorldWithCountries.swf issue related to printing was a known issue. Our developers have currently fixed the issue internally. The updated fix will be available in our next service release of FusionMaps. Hope this helps.
-
Hey, strXML += "<embed src='FusionCharts/FCF_MSColumn2D.swf' flashVars='&dataXML=strXML&chartWidth=800&chartHeight=400' quality='high' width='800' height='400' name='Column2D' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' />" Since, XML data has been directly sent to the browser, you would need to use dataXML method. For more information, please refer at: http://docs.fusioncharts.com/free/Contents/HowFCWorksDXML.html Hope this helps.
-
Hey, To display a Flash movie correctly in a browser, HTML page should contain specific tags that specify the Flash movie file to be opened and played. To display the Flash charts across various browsers, there are two tags which are intended for it: <OBJECT> and <EMBED> tags. These two tags are required to display a Flash movie in different Internet browsers properly. The <OBJECT> tag is used by Internet Explorer under Microsoft Windows and the <EMBED> tag is used by other browsers. Each of these two tags acts in the same way, however using only one tag may cause incompatibility of one of the browsers. To ensure that most browsers will play your Flash movies, you should place the <EMBED> tag nested within the <OBJECT> tag. ActiveX-enabled browsers will ignore the <EMBED> tag inside the <OBJECT> tag. Since, you have used only <OBJECT> tag, charts are rendered in Internet Explorer browser. Please refer for more information at: http://docs.fusioncharts.com/free/Contents/FirstChart.html Hope this helps.