Line - point shape OFF

Check legend

by amrutaJgtp

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>

<div id="container"></div>

CSS

#container {
  min-width: 310px;
  max-width: 800px;
  height: 400px;
  margin: 0 auto
}

JavaScript

Highcharts.chart('container', {

  title: {
    text: 'Solar Employment Growth by Sector, 2010-2016'
  },

  yAxis: {
    title: {
      text: 'Number of Employees'
    }
  },
  legend: {
    layout: 'vertical',
    align: 'right',
    verticalAlign: 'middle'
  },

  series: [{
    name: 'Installation',
    data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175],
    "color": {
      "linearGradient": {
        "x1": 1,
        "y1": 0.5,
        "x2": 0,
        "y2": 0.5
      },
      "stops": [
        [0, "rgba(106,0,255,1)"],
        [1, "rgba(255, 0, 0, 1)"]
      ]
    },
    "marker": {
      "enabled": false		//Point shape is OFF
    }
  }]

});