Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 option, so how do I remove it?

like image 618
user2178935 Avatar asked Mar 17 '13 09:03

user2178935


People also ask

How do I delete Highcharts com?

highcharts 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. will remove the highcharts.com logo.

What is legend in Highcharts?

The legend displays the series in a chart with a predefined symbol and the name of the series. Series can be disabled and enabled from the legend.


2 Answers

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 }, 
like image 179
SteveP Avatar answered Oct 07 '22 07:10

SteveP


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.

like image 44
Ahmad Alfy Avatar answered Oct 07 '22 06:10

Ahmad Alfy