Swarnam

Administrators
  • Content count

    1,122
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Swarnam

  1. Set Caption/subcaption Position For Charts

    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.
  2. Can The Set Value Be String?

    Hey, The "value" attribute accepts only numerical value for the data item. It does not accepts a String values. Hope this helps.
  3. Chrome Issue

    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.
  4. Stacked Bar Charts (M%)

    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.
  5. Adding Pound Stirling Currency Symbol To Legend

    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.
  6. Adding Pound Stirling Currency Symbol To Legend

    Hey, Can you please try the below suggestion? <set label='Project Name - £1000' value='1000' /> Hope this helps.
  7. Grid Caption

    Hi, No, it is not possible to set a caption for Grid component.
  8. Set Caption/subcaption Position For Charts

    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.
  9. How To Use Bold In Pie3D

  10. Donwload Links For Older Versions

    Hey, I'm afraid, it is not possible to download the older version.
  11. How To Use Bold In Pie3D

    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.
  12. 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.
  13. Invalid Data On Bar Chart

    Hi Tiago, Glad to know your issue has been resolved.
  14. Invalid Data On Bar Chart

    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..
  15. patterns for chart fill

    Hey, No, we do not support to fill bars with patterns using the latest version.
  16. Mixed Batch Export

    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.
  17. Pie Chart

    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.
  18. 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.
  19. 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.
  20. Charts Do Not Display In Ie9

    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?
  21. Combination 2D Legend Colors

    Hey, Can you please drop a mail to "[email protected]"?
  22. 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.