Credits
Removing “highcharts.com” Logo
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.
style: CSSObject
CSS styles for the credits label. Defaults to:
credits: {
style: {
cursor: 'pointer',
color: '#909090',
fontSize: '10px'
}
},
position: Object
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
}
},
text: String and href: String
The URL for the credits label.
Defaults to: https://www.highcharts.com.
credits: {
text: 'StackOverflow.com',
href: 'https://stackoverflow.com'
},