$(document).ready(function () {
chart = new Highcharts.StockChart({
chart: {
renderTo: 'chart',
type: 'line',
animation: false,
showAxes: true,
height: 500
},
xAxis: {
ordinal: false,
type: 'datetime',
showEmpty: true,
gridLineWidth: 1,
gridLineDashStyle: 'dot',
ordinal: false
},
yAxis: {
title: {text: 'Курс JPY, грн'},
lineWidth: 3,
gridLineWidth: 1,
gridLineDashStyle: 'dash',
ordinal: false
},
plotOptions: {
series: {connectNulls: true, shadow: false},
spline: {marker: {enabled: true}}
},
tooltip: {valueDecimals: 8, xDateFormat: '%d %b %Y', shared: true},
series: [
{
name: 'Курс JPY',
data: [[1422748800000,0.13702],[1422835200000,0.13702],[1422921600000,0.137167],[1423008000000,0.138051],[1423094400000,0.142574],[1423180800000,0.15319],[1423267200000,null],[1423353600000,0.196985],[1423440000000,0.196985],[1423526400000,0.212745],[1423612800000,0.20945],[1423699200000,0.214398],[1423785600000,0.209573],[1423872000000,0.216331],[1423958400000,0.216331],[1424044800000,0.216331],[1424131200000,0.218864],[1424217600000,0.222313],[1424304000000,0.225587],[1424390400000,0.229284],[1424476800000,0.23408],[1424563200000,0.23408],[1424649600000,0.23408],[1424736000000,0.239173],[1424822400000,0.237646],[1424908800000,0.234711],[1424995200000,0.252368],[1425081600000,0.233533]],
tooltip: {valueSuffix: ' грн'},
type: 'area',
step: true,
color: '#888888',
fillColor: {
linearGradient: {x1: 0, y1: 0, x2: 0, y2: 1},
stops: [[0, '#CCCCCC'], [1, 'rgba(50,50,50,0)']]
},
threshold: null
},
{
name: 'Среднее за период',
data: [[1422748800000, 0.137020],[1422748800000, 0.137020],[1422835200000, 0.137020],[1422921600000, 0.137167],[1423008000000, 0.138051],[1423094400000, 0.142574],[1423180800000, 0.153190],[1423353600000, 0.196985],[1423440000000, 0.196985],[1423526400000, 0.212745],[1423612800000, 0.209450],[1423699200000, 0.214398],[1423785600000, 0.209573],[1423872000000, 0.216331],[1423958400000, 0.216331],[1424044800000, 0.216331],[1424131200000, 0.218864],[1424217600000, 0.222313],[1424304000000, 0.225587],[1424390400000, 0.229284],[1424476800000, 0.234080],[1424563200000, 0.234080],[1424649600000, 0.234080],[1424736000000, 0.239173],[1424822400000, 0.237646],[1424908800000, 0.234711],[1424995200000, 0.252368],[1425081600000, 0.233533]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});