How to remove highcharts.com from the result of the chart. Which is at the right bottom corner
At the bottom right corner I need to remove or replace with out url
How to remove highcharts.com from the result of the chart. Which is at the right bottom corner
At the bottom right corner I need to remove or replace with out url
you can do that using Settings 'credits' to false or you can set your own URL in Highcharts . such as `
<script type='text/javascript'>
$(function(){
var chart = new Highcharts.Chart( {
chart: {
backgroundColor: "rgba(255, 255, 255, 0)",
marginTop: 50,
type: 'pie',
renderTo: 'chart1'
},
credits: {
enabled: false
},
...
....//other chart data//
`
Highchart by default puts a credits label in the lower right corner of the chart. This can be changed using these options.
credits: {
enabled: false
},
exporting: {
enabled: false
},