Search the Community

Showing results for tags 'ssr'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 1 result

  1. Hi My project is using server side rendering with next.js and I imported chart component this way. import dynamic from 'next/dynamic.js'; const FC = dynamic(() => import('../Employee/EmployeeFusionChart'), { ssr: false, }); we already purchased license so I tried to remove watermark from chart. when I put options in chart components and it was successful. function NextFC({ data }) { ReactFC.fcRoot(FusionCharts, Chart, FusionTheme); FusionCharts.options.creditLabel = false; FusionCharts.options.license({ key: 'OUR license key' creditLabel: false, }); return <ReactFC {...chartConfigs} />; } when I see this description from fusion chart website. They said I don't need to provide a license every time. then if I want to put the license option in app.js, what should i do? Or is there any other way to provide the license option just one time in my project?