-
Content count
1,122 -
Joined
-
Last visited
-
Days Won
7
Everything posted by Swarnam
-
Hey, No, it is not possible by using Styles to align the caption to the top left corner of the canvas. As a suggestion, try loading an external logo which can be configured to top-left of the chart. Please refre more at: http://docs.fusioncharts.com/charts/contents/AttDesc/Logo.html Hope this helps.
-
Hey, The "value" attribute accepts only numerical value for the data item. It does not accepts a String values. Hope this helps.
-
Hey, Welcome to FusionCharts Forum. If you are using Data URL method (provide data to chart from files or streams) to provide chart data. Many browsers restrict JavaScript from accessing local file system owing to security reasons. The JavaScript charts, when running locally, would 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 filesystem. When running locally, however, if you provide the data as string (using the Data String method), it works fine. Hope this helps.
-
Hey, Welcome to FusionCharts Forum Post. It was known issue in our earlier version. However, it has been fixed in our current version. Can you please re download the latest version and check if your isssue has been resolved? Download Link: http://www.fusioncharts.com/download/trials/ Hope this helps.
-
Adding Pound Stirling Currency Symbol To Legend
Swarnam replied to simonbingham's topic in General usage
-
Adding Pound Stirling Currency Symbol To Legend
Swarnam replied to simonbingham's topic in General usage
Can you please try encoding the XML as UTF-8? Most of the text editors like Notepad can do this automatically. To know more on how to BOM mark a file, please read Using Multi-lingual text page. -
Adding Pound Stirling Currency Symbol To Legend
Swarnam replied to simonbingham's topic in General usage
Hey, Can you please try the below suggestion? <set label='Project Name - £1000' value='1000' /> Hope this helps. -
Hi, No, it is not possible to set a caption for Grid component.
-
Hi, It is possible to align the caption to left by applying Styles to "Caption" object. <styles> <definition> <style name='myFontStyle' type='font' align='left' /> </definition> <application> <apply toObject='Caption' styles='myFontStyle' /> </application> </styles> Hope this helps.
-
Hey, I'm afraid, it is not possible to download the older version.
-
Hey, To apply styles to Data labels of the pie chart, apply styles to "DATALABELS" object. Please find the updated XML code: <chart bgColor='E0E0E0' bgAlpha='100' canvasBgAlpha='100' canvasBgColor='E0E0E0' showValues='1' showPercentValues='1' showBorder='0' howLabels='0' showLegend='0' slicingDistance='75' startingAngle='180' legendPosition='RIGHT' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='0' chartBottomMargin='0' captionPadding='0' valuePadding='0' manageLabelOverflow='1' animation='0' enableSmartLabels='1' bold='1' > <set label='Migradas' value='30' color='00CC00' toolText='Migradas' isSliced='1' /> <set label='Pendentes' value='70' color='FF4D4D' toolText='Pendentes' /> <styles> <definition> <style name='myValuesFont' type='font' size='15' bold='1' bgColor='666666' /> </definition> <application> <apply toObject='DATALABELS' styles='myValuesFont' /> <apply toObject='Caption' styles='myValuesFont' /> <apply toObject='Legend' styles='myValuesFont' /> </application> </styles> </chart> Hope this helps.
-
Support For Line Chart And Tables In Single Chart
Swarnam replied to winaim's topic in FusionCharts and ASP.NET
Hi Dinesh, Can you please check out the sample demo using the below link to satisfy your requirement? Link: http://docs.fusioncharts.com/charts/Code/Grid/GridWithChart.html No attachments found in the previous post. -
Hi Tiago, Glad to know your issue has been resolved.
-
Hey, I'm afraid, I'm uable to replicate the issue. Please find the attached screenshot for your reference using Multi Series Bar 2D chart rendered in JavaScript mode..
-
Hey, No, we do not support to fill bars with patterns using the latest version.
-
Hey, Apoogies for the delayed response. You can make use of FCExporter.swf from FusionCharts XT package. Starting FusionMaps XT, use of FusionMapsExportComponent.js is deprecated. Use FusionChartsExportComponent.js instead. It is recommended that you replace all references FusionMapsExportComponent.js to FusionChartsExportComponent.js in your code. Please refer more at: http://docs.fusioncharts.com/maps/Contents/ExportingImage/ECProcess.html Hope this helps.
-
Hey, Apologies for the delayed response. Can you please share the XML for further testing? Also, please let us know the version of FusionCharts used? Please check our demo gallery at: http://www.fusioncharts.com/demos/gallery/#pie-and-doughnut and share your valuable feedback.
-
Javascript Function Not Working In Power Chart
Swarnam replied to squberam's topic in Using PowerCharts XT
Hey, Apologies for the delayed response. Yes, it is possible to execute from a local machine. To enable communication between charts and JavaScript (like updating data, retrieving data, printing, exporting, event handling etc.) in your local machine, you need to Setup Flash Player Global Security settings. Please refer more about "How to setup Flash Player Global Security Settings?" at: http://docs.fusioncharts.com/charts/Tools/FlashPlayerSecuritySetup/HowToSetup.html Hope this helps. -
How To Create Context Menu In Drag & Node Chart?
Swarnam replied to squberam's topic in Using PowerCharts XT
Hey, "showAboutMenuItem" setting this to 1 in the chart element, shows up a custom context menu in the chart, which can be customized to show your text and can be linked to your URL. By default, the chart shows "About FusionCharts" when right clicked. Please refer more at: http://docs.fusioncharts.com/powercharts/Contents/AttDesc/CustomAboutMenu.html Hope this helps. -
Hey, To render Flash Charts, Adobe Flash Player 8 (or above) is required. Can you please let us know the Flash Player version installed in IE/FF browser?
-
Hey, Can you please drop a mail to "[email protected]"?
-
Stacked Combination Chart - Adaptive Primary Y-Axis
Swarnam replied to Mari's topic in General usage
Hi Mari, The stacked charts are used when data sets have to be broken down into their constituents, and then the data sets as a whole also need to be compared against one another. So, stacked charts shows a cumulative value of all data sets and Y axis lower limit should start from zero. So, it cannot adapt itself to a different figure based on values provided to the chart. "setAdaptiveSYMin" is supported in Stacked Column 3D Line Dual Y Combination Chart and Multi-series Stacked Column 2D Line Dual Y Combination Chart. This attribute is used to lets you set whether the secondary y-axis lower limit will be 0 (in case of all positive values on chart) or should the y-axis lower limit adapt itself to a different figure based on values provided to the chart. The secondary Y axis for the above chart types plots a Line dataset. Hope this helps.