하이차트(highchart) Credits 링크제거 방법

하이차트는 상업적인 목적이 아니라면 무료로 사용할 수 있는 그래프입니다. 하지만, 그냥 사용할 경우 차트에 Creadits 링크가 표기되어서 의도와는 다르게 눈에 거슬리게 됩니다.

 

 

빨간색테두리 안에 있는 하이차트 링크는 속성을 통해서 없앨 수 있습니다.

 

 

API 원문을 살펴보니 아래와 같은 팁이 있었습니다.

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

 

 

차트의 속성에 이미 credits 값을 넣어놓았더군요. 스크립트안에 추가만하면 문제가 없네요.