Highcharts Demo

author(s): Torstein Hønsi

by Vladyslav Kampov

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>


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

JavaScript

const data = {
	"vt04_actual": [
		["Actual","EOSP",1553052600000]
	]
}

Highcharts.stockChart('container', {
        rangeSelector: {
            selected: 1,
            enabled: true
        },
        title: {
            text: ''
        },
        series: [
        	{
          	
                type: 'flags',
                shape: 'squarepin',
                showInLegend: true,
                allowOverlapX: true,
            		keys: ['text', 'title', 'x'],
                data: data.vt04_actual,
                name: 'vt04_actual'
          }
        ]
    });