Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to apply highchart's license

Few days ago I bought a highchart's license but I am confused how should I use it in my graphs. Only I need to set credits option like,

credits: {
    enabled: false
}

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

like image 648
santosh kore Avatar asked Oct 17 '14 06:10

santosh kore


People also ask

How do I add a license to Highcharts?

Re: HighChart license usageThe license key is needed just for contact with the support or sales team, you shouldn't put it anywhere inside your app. The software is available for download from our website. There is no mandatory license key associated with the software, and no activation is needed.

Do I need a license to use Highcharts?

You need an OEM license when you want to use the Highcharts software in a product that will be further distributed to - and hosted by - your customers. The OEM License is our most flexible license which can be customized to your needs.

Is Highcharts free for commercial use?

Highcharts is a software library for charting written in pure JavaScript, first released in 2009. The license is proprietary. It is free for personal/non-commercial uses and paid for commercial applications.

Is Highcharts free open source?

Highcharts is free to use for personal projects, school websites, and non-profit organizations. Feel free to contact us if further help needed.


1 Answers

You just need to set:

credits: {
    enabled: false
}

forum post

I did it in the global settings for my app:

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

I then just created a license folder for highcharts somewhere in my app where I dropped the license PDF my company gave me upon purchase (just for completeness).

like image 54
Christopher Falone Avatar answered Sep 27 '22 19:09

Christopher Falone