
Akash Biswas
Moderators-
Content count
417 -
Joined
-
Last visited
Everything posted by Akash Biswas
-
Hi, Please let us know which version of FusionCharts are you using. Also kindly provide a scaled down sample replicating the issue so that we could check and get back to you. Thanks, Akash.
-
stacked column chart multi series stacked column chart
Akash Biswas replied to S_S_S's topic in Suggestions and Requests
Hi, Yes, you can create similar visualization using the "msstackedcolumn2d" chart type provided by FusionCharts. Please check the sample fiddle showcasing a similar visualization : http://jsfiddle.net/G7hYq/1144/ There is another variant of the chart type that supports a line dataset on a secondary y-axis on right side of the chart. Please refer to the documentation link : https://www.fusioncharts.com/dev/chart-guide/standard-charts/combination-charts#multi-series-stacked-column-d--line-dual-yaxis-chart-9 Thanks, Akash. -
Hi Jordi, Hope you have received the solution for your query regarding watermark while using licensed version via the SUPPORT ticket mail thread. Thanks, Akash.
-
Hi, The feature to display the peak data on rendering a Zoomline chart has been introduced now. Please check the documentation link for reference : https://www.fusioncharts.com/dev/chart-guide/standard-charts/zoom-line-charts#customize-the-peak-data-limits-8 Thanks, Akash.
-
Very Large Box and Whisker Datasets
Akash Biswas replied to TheWitness's topic in Using PowerCharts XT
Hi Jordi, The Box and Whisker chart of FusionCharts is a statistical chart that shows a frequency distribution drawing a statistical conclusion for the given data using the five number summary principle. It provides the feature to show mean, median, upper and lower quartiles, and the minimum and maximum numbers for a given set of data. It also calculates and displays the mean deviation, standard deviation, and the quartile deviation for the given set of data. Please check the below documentation links for reference : Features of Box and Whisker chart : https://www.fusioncharts.com/dev/chart-guide/standard-charts/box-and-whisker-chart#features-1 Five number principle : https://www.fusioncharts.com/dev/chart-guide/standard-charts/box-and-whisker-chart#fivenumber-summary-principle-2 Sample fiddle : https://jsfiddle.net/fusioncharts/qLvZF/ Box and Whisker chart is a statistical chart that is not developed to visualize huge dataset. FusionCharts provides separate chart types that supports huge dataset, please check the documentation link for reference : https://www.fusioncharts.com/dev/chart-guide/standard-charts/zoom-line-charts Please note : These chart types supporting huge dataset does not support statistical chart functionalities like Box and Whisker chart. Thanks, Akash. -
Chart Type Not Supported Error message after Fusion Chart Upgrade
Akash Biswas replied to Aamir's topic in Installation and Upgrades
Hi Aamir, You can switch the chart types at run-time using the chartType() API method supported by FusionCharts. However, please note the switching chart types must have same dataSource structures. As you have not mentioned the chart type that you are using or switching to, please find a sample fiddle using the above mentioned method to change among the compatible chart types. Sample fiddle : https://jsfiddle.net/fusioncharts/71tywkuf/ Documentation reference link : https://www.fusioncharts.com/dev/api/fusioncharts/fusioncharts-methods#charttype-6 As this is working fine at our end, if you still face the problem, kindly provide a sample replicating the issue and let us know the chart types you are using, so that we can provide you a solution. Thanks, Akash. -
Chart Type Not Supported Error message after Fusion Chart Upgrade
Akash Biswas replied to Aamir's topic in Installation and Upgrades
Hi Aamir, Please let us know which chart type you are using, and the list of JS files that you are including in your application to render the chart. Also let us know whether you are using any of the FusionCharts client-side plugins(like Angular, etc) to render the chart. The error "Chart type not supported" is displayed when the chart "type" is provided with a wrong chart alias name, or you have not included the required JS file for the chart type. Thanks, Akash. -
Hi Marcos, The list of 3D charts that FusionCharts provide renders a chart with 3 dimensional view of the plots. It does not support 3rd axis(z) on top of x and y axis(horizontal and vertical) as of now. The supported visualization is as below : You can check the list of available 3D charts from the below link : https://www.fusioncharts.com/dev/chart-guide/list-of-charts Thanks, Akash.
-
Hi, Yes, markers support drill-down functionality using the "link" attribute of the marker objects. Unfortunately, in the current version 3.13.1-sr.1 of FusionCharts library there is an issue with the marker drill down feature. This has been logged internally and the concerned team is working on the issue. We will notify you as it gets resolved. Thanks, Akash.
-
Please include the required JS files for the chart type that you are using. Check this documentation link for reference : https://www.fusioncharts.com/dev/getting-started/plain-javascript/your-first-chart-using-plain-javascript#render-the-chart-4
-
Hi, In Bubble chart, if the bubbles have the values of x, y and z attributes equal or close to other bubbles they may overlap. So the string displayed as in the "name" attribute will also overlap since they are aligned at the center of the bubbles. To avoid overlapping of the names, you may hide the display value for few of the bubbles by setting "showValue" to "0" at each data objects, and show the values for other bubbles accordingly so that they do not overlap. You will be able to see the details in the tooltip for the bubbles with hidden values. For different colors of the bubbles, set "color" attribute at each data objects. Refer to the sample fiddle : http://jsfiddle.net/v4wjc5hz/3/ Or, as a work-around you can add {br} to the "name" attribute so that the strings appear below or above the bubbles. Refer to this fiddle for the work-around : http://jsfiddle.net/v4wjc5hz/2/ Thanks, Akash.
-
Hi, Please check whether you are providing the correct path to the fusioncharts.js file in the <script> tag of your HTML page or application. Also check if you are including all the required JS files for the chart type that you are using. Thanks, Akash.
-
Company Logo at the place of credit on charts
Akash Biswas replied to Ravikumar Sutagundi's topic in FusionCharts DOM
Hi Ravi, The URL that you are using does not provide access for the resource due to CORS policy. Please check the below screenshot of the console when exporting for reference : This occurs while using your provided image link in the fiddle : https://jsfiddle.net/za1a6xer/40/ Please host your image accordingly so that it is accessible. Refer to the sample fiddle : https://jsfiddle.net/za1a6xer/44/ Thanks, Akash.- 7 replies
-
- credits
- fusioncharts
-
(and 2 more)
Tagged with:
-
Company Logo at the place of credit on charts
Akash Biswas replied to Ravikumar Sutagundi's topic in FusionCharts DOM
Hi Ravi, This is a sample using the Angular plugin of FusionCharts that exports the chart with the image logo exported in the export file as well. Sample : https://plnkr.co/edit/lk6Pret6eWUwn3ODJdF5?p=preview Angular Plugin reference :https://github.com/fusioncharts/angular-fusioncharts This is working fine at our end. Kindly provide a sample replicating the issue if you still face the same problem, so that we can check it at our end. Thanks, Akash.- 7 replies
-
- credits
- fusioncharts
-
(and 2 more)
Tagged with:
-
Company Logo at the place of credit on charts
Akash Biswas replied to Ravikumar Sutagundi's topic in FusionCharts DOM
Hi Ravi, The provided sample using an image logo is getting exported in the exported image file : https://jsfiddle.net/za1a6xer/38/ If you face any issue please provide a sample replicating the issue, we would check and let you know.- 7 replies
-
- credits
- fusioncharts
-
(and 2 more)
Tagged with:
-
StackedBar3D failure moving from V 3.12.1 to 3.13.1
Akash Biswas replied to ron.savage's topic in Bug Reports
Could you please provide a sample fiddle replicating the scenario that you are facing using 3.13.1 version of the FusionCharts library. Thanks, Akash.- 1 reply
-
- 3.13.1
- stackedbar3d
-
(and 1 more)
Tagged with:
-
Fusion Chart Hide Number Prefix for One Bar
Akash Biswas replied to Shivam's topic in Javascript Problems
Hi Shivam, The "$" symbol that is appearing as a prefix for all the values on the chart is due to the "numberPrefix" attribute that is set at the chart-level dataSource. This gets applicable to all the values displayed on the chart. Please note : If you set the "numberPrefix" it will be applied to all the values. To display only the first data plot value without the "$" symbol, as a work-around, you can set the "displayValue" attribute as "410K" in the corresponding(first) data object for that plot. Refer to the sample fiddle : https://jsfiddle.net/TumnU/1491/ Thanks, Akash.- 1 reply
-
- column chart
- fusion chart
-
(and 2 more)
Tagged with:
-
javascript theme not rendered in chrome browser
Akash Biswas replied to Blazemind's topic in Javascript Problems
Thanks for the acknowledgement. Glad to know that the problem is resolved now. Thanks, Akash.- 5 replies
-
- theme
- javascript
-
(and 2 more)
Tagged with:
-
javascript theme not rendered in chrome browser
Akash Biswas replied to Blazemind's topic in Javascript Problems
Hi, Check the version of FusionCharts in the fusioncharts.js file by opening it in any editor or by executing the below command in the browser console : FusionCharts.version Please note : "fusion" theme will be supported for only version 3.13.0 or higher. Check this sample working fine at our end using the theme "fusion" : http://jsfiddle.net/dkL4K/444/ If you still face the same issue, kindly provide a scaled down sample replicating the issue. We will check it at our end. Thanks, Akash.- 5 replies
-
- theme
- javascript
-
(and 2 more)
Tagged with:
-
javascript theme not rendered in chrome browser
Akash Biswas replied to Blazemind's topic in Javascript Problems
Hi, The value that you are setting to the gauge, is set using "feedData()" API method in your implementation code shared. This method of FusionCharts feed the value dynamically to the real-time charts and gauges without refreshing the chart. So it will not affect the theme that is set to the chart/gauge when the feedData() updates the values. Could you let us know which version of FusionCharts are you using? As the theme "fusion" that you are using will work with FusionCharts version 3.13.0 or above. Thanks, Akash.- 5 replies
-
- theme
- javascript
-
(and 2 more)
Tagged with:
-
Hi, As mentioned in the earlier post, kindly drop a mail to sales@fusioncharts.com they will be able to provide accurate answer to your query based on your usage. Thanks, Akash.
-
Hi, Using the free Trial version of FusionCharts library when you render any chart, a "FusionChartsXT Trial" watermark will appear on the chart as it is not licensed. To use it in your website you need to procure a product license. Kindly drop a mail to sales@fusioncharts.com they will suggest you with a suitable license for your requirement. Please note : The trial(free) version is strictly for testing and demo purpose. For any commercial usage you need to procure a license. Thanks, Akash.
-
Compatible TreeMap version with 3.4 version
Akash Biswas replied to sree123's topic in Suggestions & Requests
Hi, The Treemap chart got introduced in 3.11.0 version of FusionCharts. It cannot be used when you are using any of the earlier version than 3.11.0. Use the mentioned library files of FusionCharts version 3.13.1-sr.1 which is the current version to render Treemap chart. Please note : 3.4.0 version does not support Treemap chart, hence it is not possible to render this chart using 3.4.0 version. Please find a sample fiddle of Treemap chart using these JS files(current version - 3.13.1-sr.1) : http://jsfiddle.net/pgnub9t1/1/ Documentation of FusionCharts Treemap chart :https://www.fusioncharts.com/dev/chart-guide/standard-charts/treemap Thanks, Akash.- 3 replies
-
- javascript based
- data
-
(and 3 more)
Tagged with:
-
Compatible TreeMap version with 3.4 version
Akash Biswas replied to sree123's topic in Suggestions & Requests
Hi, The Treemap chart comes under the FusionCharts PowerCharts package, so you need to include the below JS files in your application to render a Treemap chart. fusioncharts.js fusioncharts.powercharts.js fusioncharts.treemap.js For further reference check the documentation link for the prescribed dataSource structure of FusionCharts Treemap chart :https://www.fusioncharts.com/dev/chart-guide/standard-charts/treemap Please find a sample fiddle of Treemap chart using these JS files(current version - 3.13.1-sr.1) : http://jsfiddle.net/pgnub9t1/1/ The version 3.4.0 is a pretty old version as the current version is 3.13.1-sr.1 and there has been many architectural changes made in the core library. So, we would suggest you to upgrade to the current version, as support is not available for 3.4.0 version. Thanks, Akash.- 3 replies
-
- javascript based
- data
-
(and 3 more)
Tagged with:
-
Compatible TreeMap version with 3.4 version
Akash Biswas replied to sree123's topic in Suggestions & Requests
The version 3.4.0 is a pretty old version as the current version is 3.13.1-sr.1 and there has been many architectural changes made in the core library. So, we would suggest you to upgrade to the current version, as support is not available for 3.4.0 version. Thanks, Akash.- 2 replies
-
- treemap
- fusioncharts
-
(and 4 more)
Tagged with: