Highcharts Artefacts Bug

author(s): Johannes Hoppe

by Johannes Hoppe

HTML

<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://code.highcharts.com/stock/highstock.js"></script>
<script src="https://code.highcharts.com/stock/modules/exporting.js"></script>
<script src="https://code.highcharts.com/stock/modules/export-data.js"></script>


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

JavaScript

// Create the chart
Highcharts.stockChart('container', {

  rangeSelector: {
    selected: 1
  },

  title: {
    text: 'AAPL Stock Price'
  },

  series: [{
    name: 'AAPL Stock Price',
    data: data,
    type: 'area',
    threshold: null,
    tooltip: {
      valueDecimals: 2
    }
  }]
});