highcharts

Credits

Removing “highcharts.com” Logo

Highchart by default puts a credits label in the lower right corner of the chart.

HighCharts Credits Logo

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'
},

This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow