Ayan Bhadury

Moderators
  • Content count

    655
  • Joined

  • Last visited

Everything posted by Ayan Bhadury

  1. Fusioncharts V2 Free - Change from Flash to other

    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
  2. In Graph View, Instead of Graph it shown "The website uses cookies"

    Please let me know the tech stack you are using, also kindly replicate the problem and share a scale down sample to investigate.
  3. showZeroPies crashes with larger amount of labels

    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.
  4. Hi, You can use showLable:0 at the category level for that specific plot, please check the demo - http://jsfiddle.net/cgq142r6/
  5. Create "scrollable" and "zoomable" realtime line chart

    Hi, With FusionTime you can create a real-time chart with zooming and scroll-like capabilities, here is a demo - https://jsfiddle.net/re6ba210/
  6. Gantt chart header resize problem

    Hi, Please upgrade to the latest version of FusionCharts 3.15.1-sr.1 to fix the problem - http://jsfiddle.net/fusioncharts/fLqSL/
  7. AngularJS Charts Shrinked

    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.
  8. In Graph View, Instead of Graph it shown "The website uses cookies"

    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.
  9. Creating Charts in AngularJS

    Please refer the demo - http://jsfiddle.net/qahz5w3j/
  10. chart with rounded corners

    @Apurva Please drop a mail to support @fusioncharts.com for details regarding this.
  11. FC heatmap not working

    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);
  12. Pie2d and doughnut2d Render Error

    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/
  13. Set the chart property of the "linkedchart" dynamically

    Good to know that the problem is solved.
  14. Set the chart property of the "linkedchart" dynamically

    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.
  15. Load linkeddata chart async on click react-native charts

    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.
  16. FusionTime legend position

    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.
  17. Checkmarx reports potential XSS issues

    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?
  18. Test

    This is a demo test
  19. Fusioncharts using angularjs

    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/
  20. Changing chart type dynamically

    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
  21. 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);
  22. Chart type not supported after deploy to azure- react app

    Please raise a ticket at [email protected], you can share the forum link for reference.
  23. Chart type not supported after deploy to azure- react app

    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);
  24. Chart type not supported after deploy to azure- react app

    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);