Highchart by default puts a credits label in the lower right corner of the chart.
This can be removed using credits option in your chart settings.
credits: {
enabled: false
}
Or
credits: false
will remove the highcharts.com logo.
Position configuration for the credits label. Supported properties are align, verticalAlign, x and y.
Defaults to:
credits: {
position: {
align: 'right',
x: -10,
verticalAlign: 'bottom',
y: -5
}
},