Basic Line Chart

Lost Buy Box

by Sarah Godoshian

HTML

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

<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>

JavaScript

$(function() {
  $('#container').highcharts({
    colors: ['#D0021B'],
    credits: {
      enabled: false
    },
    exporting: {
      enabled: false
    },
    title: false,
    subtitle: false,
    xAxis: {
      categories: ['12/15', '01/16', '02/16', '03/16', '04/16', '05/16', '06/16']
    },
    yAxis: {
      title: {
        text: 'Percentage (%)'
      },
      plotLines: [{
        value: 0,
        width: 1,
        color: '#808080'
      }]
    },
    legend: {
      //layout: 'vertical',
      //align: 'middle',
      //verticalAlign: 'bottom',
      //borderWidth: 0
    },
    series: [{
      name: 'Lost Buy Box',
      data: [49.9, 35.5, 29.8, 27.3, 25.1, 24.2, 21.5]
    }]
  });
});