-
Content count
655 -
Joined
-
Last visited
Everything posted by Ayan Bhadury
-
Fusioncharts V2 Free - Change from Flash to other
Ayan Bhadury replied to Johannes's topic in General usage
Hi, FusionCharts flash version is now deprecated, it now renders in pure javascript, please upgrade to the latest version 3.15.1-sr.1 for all the latest fixes and improvements, you can download it from here - https://www.fusioncharts.com/download For rendering charts in PHP check this link - https://www.fusioncharts.com/dev/getting-started/php/your-first-chart-using-php Thanks, Ayan- 1 reply
-
- fusioncharts
- flash
-
(and 1 more)
Tagged with:
-
In Graph View, Instead of Graph it shown "The website uses cookies"
Ayan Bhadury replied to veeramani.arthanari's topic in Bug Reports
Please let me know the tech stack you are using, also kindly replicate the problem and share a scale down sample to investigate.- 3 replies
-
- graph
- react-native
-
(and 1 more)
Tagged with:
-
showZeroPies crashes with larger amount of labels
Ayan Bhadury replied to PaulK's topic in Bug Reports
Hi, chart.setChartAttribute('showZeroPies', '{0|1}')' --> setChartAttribute method can have one key value as a pair , for example chart.setChartAttribute('showZeroPies', '0') Kindly upgrade to the latest version of FusionCharts 3.15.1-sr.1 and let me know if you are still facing the problem. -
MSSpline area charts with multiple data plots has conjested data labels
Ayan Bhadury replied to prabu2006it's topic in Suggestions & Requests
Hi, You can use showLable:0 at the category level for that specific plot, please check the demo - http://jsfiddle.net/cgq142r6/ -
Create "scrollable" and "zoomable" realtime line chart
Ayan Bhadury replied to José Salgueiro's topic in General usage
Hi, With FusionTime you can create a real-time chart with zooming and scroll-like capabilities, here is a demo - https://jsfiddle.net/re6ba210/ -
Hi, Please upgrade to the latest version of FusionCharts 3.15.1-sr.1 to fix the problem - http://jsfiddle.net/fusioncharts/fLqSL/
-
AngularJS Charts Shrinked
Ayan Bhadury replied to Gabriel Valentoni's topic in Suggestions and Requests
It seems like the chart dimension is broken, please check the CSS stylings if you have set any to the container where the chart is rendered. -
In Graph View, Instead of Graph it shown "The website uses cookies"
Ayan Bhadury replied to veeramani.arthanari's topic in Bug Reports
Hi, Please let us know at which stage you are getting the problem. However as far as the assumption, if you are rendering charts with the watermark visible on the charts then if the user clicks on that trial mark it would redirect to FusionCharts website as shown in the above image.- 3 replies
-
- graph
- react-native
-
(and 1 more)
Tagged with:
-
Please refer the demo - http://jsfiddle.net/qahz5w3j/
-
@Apurva Please drop a mail to support @fusioncharts.com for details regarding this.
-
Hi, Apologies for the delay. For rendering heatmap chart in react you need to import the following files: import FusionCharts from 'fusioncharts'; import from'fusioncharts/fusioncharts.powercharts';importFusionThemefrom'fusioncharts/themes/fusioncharts.theme.fusion';importReactFCfrom'react-fusioncharts';ReactFC.fcRoot(FusionCharts,,FusionTheme);
-
Hi, I hope you are doing good, apologies for the delay. To fix the problem please set FusionCharts.options.SVGDefinitionURL = 'absolute'; globally for the chart Here is a demo - http://jsfiddle.net/nyc1eag4/
-
Set the chart property of the "linkedchart" dynamically
Ayan Bhadury replied to SantoshNavle's topic in Using FusionMaps XT
Good to know that the problem is solved. -
Set the chart property of the "linkedchart" dynamically
Ayan Bhadury replied to SantoshNavle's topic in Using FusionMaps XT
Hi Santosh, I hope you are doing good. For drill-down chart you need to load the parent and child data at the beginning i.e. while rendering the parent chat the child chart data (linked chart data) also needs to be loaded, as of now, it is not possible to load child chart data asynchronously. -
Load linkeddata chart async on click react-native charts
Ayan Bhadury replied to Ryan Taylor's topic in General usage
Hi Ryan, I hope you are doing good. For drill-down chart you need to load the parent and child data at the beginning i.e. while rendering the parent chat the child chart data also needs to be loaded, as of now it is not possible to load child chart data asynchronously. -
Hello, As of now, it is not possible to change the position of legends in FusionTime. However, we are logging a request for this internally.
-
HI, Hope you are keeping well! Thank you for your continued patience. For the issue reported, could you please upgrade your current version to the latest, i.e, FusionCharts Suite XT v3.15.1?
-
You can refer our angularjs plugin to render charts in Angular1x framework - https://www.fusioncharts.com/dev/getting-started/angular/angularjs/your-first-chart-using-angularjs Fetching the data from the database needs to be handled accordingly, since FusionCharts helps to visualize the data from the database, here are few third party blog links for reference - https://www.webcodegeeks.com/javascript/angular-js/angularjs-sql-example/
-
Changing chart type dynamically
Ayan Bhadury replied to Ravikumar Sutagundi's topic in FusionCharts DOM
Hi Ravi, The issue has been fixed, also we have updated angular-fusioncharts and fusioncharts plugin, to know more check this link - https://www.fusioncharts.com/dev/getting-started/angular/angular/your-first-chart-using-angular -
[Angular 6] Chart Type Not Supported Error When Building for Production
Ayan Bhadury replied to Eric.G's topic in General usage
Hi, Please import the FusionCharts files in the following way to resolve the problem import * as FusionCharts from 'fusioncharts' import * as Charts from 'fusioncharts/fusioncharts.charts' import * as FusionTheme from 'fusioncharts/themes/fusioncharts.theme.fusion' Charts(FusionCharts); FusionTheme(FusionCharts); FusionChartsModule.fcRoot(FusionCharts); -
Chart type not supported after deploy to azure- react app
Ayan Bhadury replied to maciejosas's topic in General usage
Please raise a ticket at [email protected], you can share the forum link for reference. -
Chart type not supported after deploy to azure- react app
Ayan Bhadury replied to maciejosas's topic in General usage
Hi, You have not passed the parameters inside the fc root as suggested, please use only FusionCharts as the dependency import FusionCharts from 'fusioncharts'; import PowerCharts from 'fusioncharts/fusioncharts.powercharts'; import FusionTheme from 'fusioncharts/themes/fusioncharts.theme.fusion'; import ReactFC from 'react-fusioncharts'; PowerCharts(FusionCharts); FusionTheme(FusionCharts); ReactFC.fcRoot(FusionCharts); -
Chart type not supported after deploy to azure- react app
Ayan Bhadury replied to maciejosas's topic in General usage
Please share the updated import statements. -
Chart type not supported after deploy to azure- react app
Ayan Bhadury replied to maciejosas's topic in General usage
Hi, Please import the FusionCharts files in the following way in order to resolve the problem. import FusionCharts from 'fusioncharts'; import PowerCharts from 'fusioncharts/fusioncharts.powercharts'; import FusionTheme from 'fusioncharts/themes/fusioncharts.theme.fusion'; import ReactFC from 'react-fusioncharts'; PowerCharts(FusionCharts); FusionTheme(FusionCharts); ReactFC.fcRoot(FusionCharts);