Removing highcharts.com credits link

JavascriptHighcharts

Javascript Problem Overview


I have just purchased highcharts, but the credits link still appears on my graphs which are quite prominent on my site and it distorts the chart view.

I assumed I would get an option, so how do I remove it?

Javascript Solutions


Solution 1 - Javascript

You can customise the credits, changing the URL, text, Position etc. All the info is documented here: http://api.highcharts.com/highcharts/credits. To simply disable them altogether, use:

credits: {
    enabled: false
},

Solution 2 - Javascript

It's said here that you should be able to add the following to your chart config:

  credits: {
    enabled: false
  },

that will remove the "Highcharts.com" text from the bottom of the chart.

Solution 3 - Javascript

add

credits: {
    enabled: false
}

[NOTE] that it is in the same line with xAxis: {} and yAxis: {}

Solution 4 - Javascript

Both of the following code will work fine for removing highchart.com from the chart:-

credits: false

or

credits:{
 enabled:false,
}

Solution 5 - Javascript

Add this to your css.

.highcharts-credits {
display: none !important;
}

Solution 6 - Javascript

credits : null

also works to disable the credits

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser2178935View Question on Stackoverflow
Solution 1 - JavascriptStevePView Answer on Stackoverflow
Solution 2 - JavascriptAhmad AlfyView Answer on Stackoverflow
Solution 3 - JavascriptBryan LimView Answer on Stackoverflow
Solution 4 - JavascriptArun Kumar NView Answer on Stackoverflow
Solution 5 - JavascriptPsychedelic WizardView Answer on Stackoverflow
Solution 6 - Javascriptbrujo_rojasView Answer on Stackoverflow