23 March 2017
highcharts.com link in footer

Highcharts comes with a credits link by default. This snippet shows how to hide the link using the configurations.

Source code viewer
  1. var config = {
  2. credits: {
  3. // Remove highcharts.com credits link from chart footer.
  4. enabled: false,
  5. },
  6. };
Programming Language: Javascript