Removing Highcharts.com Credits Link
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 opti
Solution 1:
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:
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:
add
credits:{
enabled:false}
[NOTE] that it is in the same line with
xAxis: {}
and yAxis: {}
Solution 4:
Both of the following code will work fine for removing highchart.com from the chart:-
credits:false
or
credits:{
enabled:false,
}
Solution 5:
Add this to your css.
.highcharts-credits {
display: none !important;
}
Post a Comment for "Removing Highcharts.com Credits Link"