-
Content count
655 -
Joined
-
Last visited
Everything posted by Ayan Bhadury
-
Fusion chart export into server side
Ayan Bhadury replied to Bharath Pj's topic in FusionCharts Jobs and Consultation
You need to export the chart and attach that image file to the mail manually from your file explorer. -
Fusion chart export into server side
Ayan Bhadury replied to Bharath Pj's topic in FusionCharts Jobs and Consultation
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/ -
Get fusion chart attachment for send email
Ayan Bhadury replied to Bharath Pj's topic in Company News
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/ -
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/
-
Fusion charts not working in Chrome
Ayan Bhadury replied to koduruabhinav's topic in FusionCharts and JSP
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 -
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/
-
Read JSON file to chart possible?
Ayan Bhadury replied to AdrianNidz's topic in FusionCharts and JSP
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 -
Funnel - Centered in 3.8.0, Left-aligned in 3.12.2
Ayan Bhadury replied to BradG's topic in Bug Reports
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. -
Welcome.
-
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.
-
How to display static % in axis of Bar 3D
Ayan Bhadury replied to snehasingi's topic in FusionCharts and ASP.NET
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 -
How to display static % in axis of Bar 3D
Ayan Bhadury replied to snehasingi's topic in FusionCharts and ASP.NET
Please set yAxisMinValue as 0 and yAxisMaxValue as 100, please check the fiddle for reference - https://jsfiddle.net/4n98v5ou/ -
Okay thanks, we will take your suggestion as an input.
-
How to use scroll bars in Bar 3d chart?
Ayan Bhadury replied to snehasingi's topic in FusionCharts and ASP.NET
Hi, Bar chart with scroll feature is not possible as of now. -
How to add Percentage sign (%) in Bar 3D
Ayan Bhadury replied to snehasingi's topic in FusionCharts and ASP.NET
Hi, Please use legendPadding attribute at the chart level and set the values accordingly, refer the fiddle for details - http://jsfiddle.net/2jemLhmr/ -
How to add Percentage sign (%) in Bar 3D
Ayan Bhadury replied to snehasingi's topic in FusionCharts and ASP.NET
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/ -
How to add Percentage sign (%) in Bar 3D
Ayan Bhadury replied to snehasingi's topic in FusionCharts and ASP.NET
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/ -
Hi, You can download the latest version of FusionCharts from here - https://www.fusioncharts.com/download/
-
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/
-
ie Charts rendering slowly in IE11
Ayan Bhadury replied to CrazyCoder's topic in FusionCharts v3 jQuery Plugin
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 -
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
-
Can I show hand cursor on hover of each bar (Not using 'link')
Ayan Bhadury replied to Shrabanee's topic in Using FusionWidgets XT
Hi @Shrabanee Please check the fiddle for reference - https://jsfiddle.net/xaqm5zjh/ -
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.
-
Where to define function to be used for link?
Ayan Bhadury replied to Shrabanee's topic in Using FusionWidgets XT
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/ -
How can I stop an on going render?
Ayan Bhadury replied to Shrabanee's topic in Using FusionWidgets XT
As of now, y-axis animation is not possible, when the data are updated.