score:35

Accepted answer

take a look at the highcharts api here: https://api.highcharts.com/highcharts/chart.backgroundcolor and you will see it's a property of the chart object that can take a solid color:

{
  chart: {
     backgroundcolor: '#fcffc5',
     polar: true,
     type: 'line'
  }
}

or gradiant:

{
  chart: {
    backgroundcolor: {
       lineargradient: [0, 0, 500, 500],
       stops: [
         [0, 'rgb(255, 255, 255)'],
         [1, 'rgb(200, 200, 255)']
       ]
     },
     polar: true,
     type: 'line'
  }
}

score:0

demo

you can data: [[0, 0, true], you can hide value by 'false' and you can set your gradient by

  coloraxis: {
        min: 0,
        stops: [
         [0, '#5dba76'],
        [0.4, '#ffff00'],
        [0.8, '#f30000']
    ],
        mincolor: '#ff0000',
        maxcolor: '#ffff00'
    },

thanks :)

score:0

you can hide value by 'false'

data: [[0, 0, false], [0, 1, 2], [0, 2, 3], [0, 3, 4], [0, 4, 5], [1, 0, 2], [1, 1, 4], [1, 2, 6], [1, 3, 8], [1, 4, 10], [2, 0, 3], [2, 1, 6], [2, 2, 9], [2, 3, 12], [2, 4, 15], [3, 0, 4], [3, 1, 8], [3, 2,12], [3, 3, 16], [3, 4, 20], [4, 0, 5], [4, 1, 10], [4, 2, 15], [4, 3, 20], [4, 4, 25]

http://jsfiddle.net/3527r4ty/1/

score:1

that's you want `

chart: {
            polar: true,
            type: 'line',
            backgroundcolor:'rgba(255, 255, 255, 0.1)'
        }

`

score:2

there is a backgroundcolor tag you can use: (http://jsfiddle.net/aep4e/)

chart: {
      polar: true,
      type: 'line',
      backgroundcolor:'blue' 
},

Related Query

More Query from same tag