BenBiz Report post Posted March 4, 2021 I am attempting to follow the instructions listed here and upgrade to a paid version: https://www.fusioncharts.com/dev/upgrading/license-activation However, in code the definition for the FusionCharts.options object is this: FusionCharts.FusionChartStatic.options: { creditLabel?: string | boolean; defaultTheme?: string; export?: { useCanvas?: string | boolean; }; preventTrackResize?: boolean; resizeTrackingInterval?: number; scriptBaseUri?: string; SVGDefinitionURL?: string; } Error: Property 'license' does not exist on type '{ creditLabel?: string | boolean; defaultTheme?: string; export?: { useCanvas?: string | boolean; }; preventTrackResize?: boolean; resizeTrackingInterval?: number; scriptBaseUri?: string; SVGDefinitionURL?: string; }'.ts(2339) There is no license function available to populate with the key. I am using V3.16.0 via npm. Am I doing something wrong here? Thank you. Share this post Link to post Share on other sites
BenBiz Report post Posted March 9, 2021 Any progress on this item? Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted March 10, 2021 If you are using typescript apply in the following way : FusionCharts.options['license']({ key: '<YOUR KEY>', creditLabel: false, }); Share this post Link to post Share on other sites
BenBiz Report post Posted March 10, 2021 Ayan, Thank you, that worked. We are now fully paid members of Fusion Charts! Share this post Link to post Share on other sites