Ayan Bhadury

Moderators
  • Content count

    655
  • Joined

  • Last visited

Everything posted by Ayan Bhadury

  1. Fusion chart export into server side

    You need to export the chart and attach that image file to the mail manually from your file explorer.
  2. Fusion chart export into server side

    Hi, FusionCharts provides you the feature of exporting charts into multiple formats such as jpg, png etc.. however in order to attach the image file to an email you need to export the chart and manually attach that file to the email, as of now there is no native feature to attach the image automatically to the email. To know more about export feature please refer this link - https://www.fusioncharts.com/dev/exporting-charts/using-fc-export-server/exporting-charts-as-image-and-pdf.html Also please check the export feature sample using react js - http://jsfiddle.net/f0b2e0ms/97/
  3. Get fusion chart attachment for send email

    Hi, FusionCharts provides you the feature of exporting charts into multiple formats such as jpg, png etc.. however in order to attach the image file to an email you need to export the chart and manually attach that file to the email, as of now there is no native feature to attach the image automatically to the email. To know more about export feature please refer this link - https://www.fusioncharts.com/dev/exporting-charts/using-fc-export-server/exporting-charts-as-image-and-pdf.html Also please check the export feature sample using react js - http://jsfiddle.net/f0b2e0ms/97/
  4. Zoomline Chart Feature

    Hi, Yes, FusionCharts allows you to reset your chart and to zoom out natively, please check the sample for reference - http://jsfiddle.net/fusioncharts/t19c4y4e/
  5. Fusion charts not working in Chrome

    Hi, Please note flash charts are deprecated FusionCharts now renders in pure javascript, kindly upgrade to the latest version i.e. 3.12.2 to get all the latest features and improvements. We would also like to let you know that we have a dedicated JSP wrapper using which you could render FusionCharts using java as a server-side language, please check this link for reference - https://www.fusioncharts.com/dev/using-with-server-side-languages/java/introduction.html
  6. Chart Type Suggestion?

    Hi, You could adjust the chart as per your visualizations and place the additional text beside so as to form a table-like structure as per the above image, to know more about dashboard implementations please refer this page - https://www.fusioncharts.com/dashboards/
  7. Read JSON file to chart possible?

    Hi, Yes you could read from the external data source all you need to do is set the data format as jsonurl if it is a JSON file and xmlurl if it is an xml file, then on the next parameter pass the file name with its extension To know more in details check this link - https://www.fusioncharts.com/dev/getting-started/setting-data-source-using-url.html
  8. Funnel - Centered in 3.8.0, Left-aligned in 3.12.2

    Hi, The issue has been replicated at our end, we have forwarded this to the concerned team. We will get back to you if there are any updates.
  9. Save all rendered charts

    Welcome.
  10. Save all rendered charts

    Hi, For exporting multiple charts on a pdf page you could check FusionChart's batch export functionality. To know more click here - https://www.fusioncharts.com/features/export-charts-as-images-and-PDF/ Also note that in order to use this feature you need to upgrade FusionCharts library to the latest version i.e. 3.12.2, as you are using a very older version (flash based) which has been deprecated.
  11. How to display static % in axis of Bar 3D

    Showing the limits without the suffix and rest using % as a suffix is not possible. However, you could refer text annotations to meet your requirements from here - https://www.fusioncharts.com/dev/advanced-chart-configurations/annotations/creating-annotations/creating-text-annotations.html
  12. How to display static % in axis of Bar 3D

    Please set yAxisMinValue as 0 and yAxisMaxValue as 100, please check the fiddle for reference - https://jsfiddle.net/4n98v5ou/
  13. Possible to force last data point labels?

    Okay thanks, we will take your suggestion as an input.
  14. How to use scroll bars in Bar 3d chart?

    Hi, Bar chart with scroll feature is not possible as of now.
  15. How to add Percentage sign (%) in Bar 3D

    Hi, Please use legendPadding attribute at the chart level and set the values accordingly, refer the fiddle for details - http://jsfiddle.net/2jemLhmr/
  16. How to add Percentage sign (%) in Bar 3D

    Hi, Please note Bar3d chart does not have any legend feature, kindly elaborate for which chart you are asking for reducing the space between the legends and chart, it would be really helpful if you share a sample fiddle for the same Regarding your second query, you decrease the width of the bar either using plotSpacePercent or using maxBarHeight accordingly to requirements, please check the fiddle for reference - https://jsfiddle.net/opg9u50q/
  17. How to add Percentage sign (%) in Bar 3D

    For providing values as percentage please set numberSuffix attribute as % at the chart level. Please check the sample fiddle for reference - http://jsfiddle.net/7ee5tfj6/
  18. How to show percentage

    Hi, You can download the latest version of FusionCharts from here - https://www.fusioncharts.com/download/
  19. Possible to force last data point labels?

    Hi, Please note since the number of plots are huge hence FusionCharts automatically shows labels so as to provide a good visualization, hence if you want to show all the labels of the data plots please set labelDisplay as NONE but please note this will make the labels overlap since you are forcefully disabling the label customization and skipping. From the above requirement since you are updating the column charts data on a weekly basis, and you want to show the x-axis limits you could set showLables to 0 at the chart level and inside the data level please set showLabel to 1 only for the first and the last data plot in order to show them as limits. Please check this sample fiddle for reference - http://jsfiddle.net/fmw79ajt/
  20. Charts rendering slowly in IE11

    There have been various performance improvements made in our latest version i.e. 3.12.2, kindly upgrade to the latest version if you want more optimized performance. We checked a sample bar chart on IE 11 with 100 data plots using performance.now API method of Javascript and the average time taken is 0.5 seconds (approx) Please note the performance may vary depending on your system configuration. Also, make sure that while testing the performance you have set animation to 0 at the chart level and asyncRender as 0 at the constructor level. For reference please check the sample - https://www.dropbox.com/s/9fujlraueq28l1m/3.12.2.zip?dl=0
  21. Does fusioncharts works without jquery?

    Hi, Please share us a scale down sample replicating the problem so that we could investigate it further. For a reference please check a working sample from here - https://plnkr.co/edit/F70SeRSv6B4gBNtR7mTA?p=preview
  22. Hi @Shrabanee Please check the fiddle for reference - https://jsfiddle.net/xaqm5zjh/
  23. Firefox multiple Pie2d on page label error

    Hi, This is a known issue, and it has been fixed internally, and it will be fixed in the next version release. If you still want a quick fix for the issue kindly send us a mail to [email protected] with your order and licensing details so that we could provide a quick patch fix for this.
  24. Where to define function to be used for link?

    Hi, You need to make the function available to the window document in order to execute it. Please check the sample fiddle - https://jsfiddle.net/nvs76f62/
  25. How can I stop an on going render?

    As of now, y-axis animation is not possible, when the data are updated.