Highcharts Demo

by vasagi

HTML

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

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

JavaScript

$(function () { 
    $('#container').highcharts({
    chart: {
        type: 'line',
        zoomType: 'x',
        styledMode: true
    },
    boost: {
        enabled: true,
        useGPUTranslations: true
    },
    xAxis: {
        type: 'datetime'
    },
    series: [{
        data: [
            [1609459200000, 10],
            [1609545600000, 20],
            [1609632000000, 15],
            [1609718400000, 25],
            [1609804800000, 30]
        ]
    }]
});
})