How to apply a highchart license

A few days ago I bought a license for highchart, but I'm confused about how to use it on my charts. Only I need to install a loan option, for example,

credits: { enabled: false } 

Or do I need to specify my license key elsewhere in the code?

+5
source share
1 answer

You just need to install:

 credits: { enabled: false } 

forum post

I did this in the global settings for my application:

 Highcharts.setOptions({ ... credits: { enabled: false } }); 

Then I just created a folder with a license for graphics cards somewhere in my application, where I deleted the PDF license that my company gave me when I purchased it (for completeness only).

+1
source

Source: https://habr.com/ru/post/1204897/


All Articles