ArticleZip > Removing Highcharts Com Credits Link

Removing Highcharts Com Credits Link

Have you ever tried implementing Highcharts on your website, only to find that the "Highcharts.com" credits link is there, messing up your design? Don't worry; in this article, we'll walk you through the simple steps to remove the Highcharts.com credits link and keep your charts looking clean and professional on your site.

Why Remove the Highcharts.com Credits Link?
When you use Highcharts for your data visualization needs, you might want to remove the credits link to maintain a clean and polished appearance on your website. It's essential to give credit where it's due, but sometimes these credits can disrupt the overall look and feel of your site, especially if you're using Highcharts for business or professional purposes.

Steps to Remove the Highcharts.com Credits Link:

1. Locate the Highcharts JavaScript File:
First, you need to locate the Highcharts JavaScript file in your project directory. This file is usually named "highcharts.js" or something similar, depending on the version you're using.

2. Open the JavaScript File:
Once you've found the Highcharts JavaScript file, open it with a text editor or an integrated development environment (IDE) of your choice. Look for the section that contains the credits link text, which is typically displayed at the bottom of the chart.

3. Find the credits Option:
Search for the "credits" option within the Highcharts configuration settings. It's a property that allows you to customize or disable the credits text displayed on your charts. The credits option might look something like this:

Plaintext

credits: {
  enabled: false
}

4. Disable the Credits Link:
To remove the Highcharts.com credits link, set the "enabled" property to "false" within the credits option. This will disable the display of the credits text on your charts. Your configuration should now look like this:

Plaintext

credits: {
  enabled: false
}

5. Save and Apply Changes:
After you've made the necessary changes to the Highcharts JavaScript file, save the file and deploy it to your website. Make sure to refresh your web page to see the updated chart without the Highcharts.com credits link.

By following these simple steps, you can effectively remove the Highcharts.com credits link from your charts and maintain a professional and clean design on your website. Remember to always credit Highcharts for their amazing data visualization library in your project documentation or acknowledgments section.

In conclusion, customizing Highcharts to suit your design needs is a crucial aspect of creating engaging and visually appealing data visualizations on your website. Removing the Highcharts.com credits link is just one way to ensure that your charts look polished and professional. Keep exploring and experimenting with Highcharts to make the most out of this powerful tool for data representation. Happy coding!

×