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?
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?
Share Improve this question asked Oct 17, 2014 at 6:32 santosh koresantosh kore 9861 gold badge13 silver badges22 bronze badges 1- 4 I think that kind of question is better to ask Highcharts sales team directly. I'm pretty sure they have much better knowledge than some programmers on stackoverflow.. – Paweł Fus Commented Oct 17, 2014 at 10:13
1 Answer
Reset to default 10You 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 pany gave me upon purchase (just for pleteness).