Method One: Single chart removal copyright
Set the credits property to not be available, that is, credits in Enable=false, the specific code is as follows
<Script type="Text/javascript">$(function () { VarChart;$(Document).Ready(function() {Chart= New Highcharts.Chart({Chart: {Renderto: ' Container ',Type: ' Pie ', },Credits: {Enabled:FalseDo not display highcharts copyright information },Xaxis: {Categories: [' 1 ',' 2 ',' 3 ',' 4 ',' 5 '] }, series: [{ name: ' series1 ', data: [2,4 ,5,9,2] } ); }); }); </Script>
Method Two: Customize
Customize the copyright link text and URL, how to set it in the previous article detailed description
Method Three: Modify the Highcharts.js file, remove all the chart copyright information
Open Highcharts.js with a text editor. Search for "credits",
There are two ways to modify
1, change the enabled to disable, that is, the credits default is not available
2. Leave content in Text: "" Blank
You can also modify the contents of text and href to change the link and text to what you want, so that all copyright information in the chart can be modified.
"Highcharts Series tutorial" Vi. Ways to remove highcharts copyright information