Highcharts comes with a credits link by default. This snippet shows how to hide the link using the configurations.
Source code viewer
var config = { credits: { // Remove highcharts.com credits link from chart footer. enabled: false, }, };Programming Language: Javascript