-1

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

siva
  • 19
  • 1
  • 8

3 Answers3

4

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//

`

Bidyashish Kumar
  • 306
  • 4
  • 10
0

You need to set the following to change the url:

credits: {
    text: 'Example.com',
    href: 'http://www.example.com'
}

See fiddle from the API, where you can also see how to disable it.

ewolden
  • 5,722
  • 4
  • 19
  • 29
0

Highchart by default puts a credits label in the lower right corner of the chart. This can be changed using these options.

Highcharts API

JSFiddle

  credits: {
            enabled: false
        },
        exporting: { 
            enabled: false
      },
Kondal
  • 2,870
  • 5
  • 26
  • 40