Problem
I recently purchased highcharts, however the credits link continues to remain on my graphs, which are prominent on my site, distorting the chart perspective.
How can I get rid of the choice I expected I’d get?
Asked by user2178935
Solution #1
You can personalize the credits by modifying the URL, text, and position, among other things. The details can be found at http://api.highcharts.com/highcharts/credits. Use the following command to completely disable them:
credits: {
enabled: false
},
Answered by SteveP
Solution #2
You should be able to add the following to your chart settings, according to this:
credits: {
enabled: false
},
The text “Highcharts.com” will be removed from the bottom of the chart as a result of this.
Answered by Ahmad Alfy
Solution #3
add
credits: {
enabled: false
}
It’s worth noting that it’s in the same line as xAxis: and yAxis:.
Answered by Bryan Lim
Solution #4
For eliminating highchart.com from the chart, one of the following codes will suffice:-
credits: false
or
credits:{
enabled:false,
}
Answered by Arun Kumar N
Solution #5
This should be included to your CSS.
.highcharts-credits {
display: none !important;
}
Answered by Psychedelic Wizard
Post is based on https://stackoverflow.com/questions/15459224/removing-highcharts-com-credits-link