-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
We tried creating small sample and export using MVC2. We will send you a very small sample soon you send your email id and details to [email protected]
-
2-Letter Country Codes For Croatia And Montenegro Are Incorrect, Kosovo Needed
FusionCharts Support replied to eoincampbell's topic in Bug Reports
Thanks for the updates. -
Fusion Charts On Filemaker Generated Web Site
FusionCharts Support replied to gwentltd's topic in FusionCharts and PHP
Hi, You need to build XML for the chart using the data from FileMaker though PHP. Next you can pass the data to the chart and the chart would render. -
Chart Export Callback Functions
FusionCharts Support replied to pm101's topic in Javascript Problems
Hi, the data gets POSTED to server, the server processes it and then saves and returns response back to chart, chart calls the callback. So, it can take a bit of time depending on transfer rate, server load etc. -
Adding To Exported Images/pdfs
FusionCharts Support replied to autark's topic in FusionCharts and JSP
Hi, Please send is your email id to [email protected] with all details and our developer will let you know. -
Try { __Flash__Toxml(Fc_Exported(({Sta...lename:"null",height:0,width:0,<Br />\n
FusionCharts Support replied to glaze24's topic in FusionCharts and PHP
is is by any chance that the data is not getting posted properly? -
Our developers are looking into this and the solution will be available in the next release.
-
This is possible using a tweak. 1. set of canvas border using canvasBorderAlpha='0'. 2. Create a shadows style and apply on canvas. <styles><definition><style type="Shadow" name="Shadow_0" Distance="1" strength='4' angle='135' quality='64' Color="000000" blurY="0" blurX='0'/></definition><application><apply toObject="CANVAS" styles="Shadow_0"/></application></styles>
-
Json Object Discrepency In 3.2 Style
FusionCharts Support replied to DannyR's topic in General usage
Thanks. -
Hi, This can absolutely be done. All you need to do is to build an XML form your data (dynamic or statc) as per the schema supported by the chart and pass the XML to the chart when embedding it using the J2EE wrapper.
-
This is not directly supported.
-
Numdivlines Not Working In Html5, Have To Use _Overridejschartconfiguration
FusionCharts Support replied to DannyR's topic in Bug Reports
Thanks. -
Some Strategic Questions To Fusion And Js And On To Auto-Scalcing X-Axis
FusionCharts Support replied to FrankKnobloch's topic in General usage
How can we do auto-scaling for x-axis with flash and js >> Auto scaling for X Axis is not supported in normal charts except for Scatter and bubble. -
Some Strategic Questions To Fusion And Js And On To Auto-Scalcing X-Axis
FusionCharts Support replied to FrankKnobloch's topic in General usage
Hi, Thanks for trying FusionCharts. Some updates on your questions: Will all of your charts be available in JS version (power and so on)? >> As of now not all. We are trying our best to provide as much as we can. All will be there in our next major version - v4. * Will HighCharts and Fusion become as close together as possible? >> We are trying to do this too. Only that there wont be any 3D charts using HighCharts. Some differences will always be there which we will overcome in our next major verison v4. * Which constraints exist (What works in js and not in flash, what works in flash, not in js) >> Our docs pages can help: http://www.fusioncharts.com/docs/Introduction/JSChartingCapabilities.html * Will "zoomable" be available for charts with more than one y-axis? >> We have this in our wish list for v4. -
1. Can not be done as of now. 2. Chart automatically decides that to prevent overlapping. 3. no
-
Fusioncharts For Flex Chart Duplicating Itself
FusionCharts Support replied to DaveCritchley's topic in General usage
Hi, Could you please check once not using FCRender() if a chart is already existing? -
Yes, each chart provide a JS API function called exportChart. You can call this function when the chart get completely rendered and ready for export. You can see a PHP sample from our latest (FusionCharts v3.2.1) pack's CODE/PHP/Export folder.
-
Update Fc Dynamically Per User Input
FusionCharts Support replied to SuperDelic's topic in General usage
Hi, If you call render the chart will reload or if you set another chart type. Please try calling only the two lines below and you wil see the difference. chartReference.setChartAttribute("animation", blnAnim); chartReference.setChartAttribute("showSum", blnShowSum); Please note that setChartAttribute internally updates an existing chart which is also redrawing the chart, but the redrawing takes place pretty fast to get this traced visibly. -
Hi, Could you please try once using the latest version of FusionCharts v3.2?
-
Please also find the attached file containing Gantt with 105 rows. Please find that the gantt showing all labels, tasks, datatable etc. Please note that there is surely a limitation to the number of tasks that you can plot which is 300-400 with animation, shadow, tooltip, gradient are turned off. GanttWithHeight2.zip
-
I suppose you just need to increase the height of the chart. Please find a sample attached has used your XML with some modification of the font size for better visibility. GanttWithHeight.zip
-
Your chart is too big vertically to give space for the labels in the table.
-
Hi, Could you please try using this sample attached? PERLSamples.zip
-
Does Fusion Charts support accessibility?
FusionCharts Support replied to sunyatsun's topic in Miscellaneous
Hi, Please find a sample attached. FusionCharts_508.zip -
Rendercharthtml Change From 3 To 3.2 Fix
FusionCharts Support replied to theronrr's topic in Bug Reports
Hi, Thanks for sharing this. We actually cleaned up the RenderChartHTML method for 3.2. <DIV> is optional as <OBJECT>/<EMBED> will take care of all things. In majority of the cases, standard method of accessing an HTML element via JavaScript DOM is using an Id and rarely using name in the element. Please share with the community your ideas on using id vs using 'name'.