$(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: [[1427846400000,0.195668],[1427932800000,0.195335],[1428019200000,0.196472],[1428105600000,0.194761],[1428192000000,0.194761],[1428278400000,0.194761],[1428364800000,0.195954],[1428451200000,0.195634],[1428537600000,0.196302],[1428624000000,0.195398],[1428710400000,0.189965],[1428796800000,0.189965],[1428883200000,0.189965],[1428969600000,0.189965],[1429056000000,0.191202],[1429142400000,0.182139],[1429228800000,0.179964],[1429315200000,0.177281],[1429401600000,0.177281],[1429488000000,0.177281],[1429574400000,0.1869],[1429660800000,0.186579],[1429747200000,0.188533],[1429833600000,0.187619],[1429920000000,0.187861],[1430006400000,0.187861],[1430092800000,0.187861],[1430179200000,0.191757],[1430265600000,0.186995],[1430352000000,0.176492]],
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: [[1427846400000, 0.195668],[1427846400000, 0.195668],[1427932800000, 0.195335],[1428019200000, 0.196472],[1428105600000, 0.194761],[1428192000000, 0.194761],[1428278400000, 0.194761],[1428364800000, 0.195954],[1428451200000, 0.195634],[1428537600000, 0.196302],[1428624000000, 0.195398],[1428710400000, 0.189965],[1428796800000, 0.189965],[1428883200000, 0.189965],[1428969600000, 0.189965],[1429056000000, 0.191202],[1429142400000, 0.182139],[1429228800000, 0.179964],[1429315200000, 0.177281],[1429401600000, 0.177281],[1429488000000, 0.177281],[1429574400000, 0.186900],[1429660800000, 0.186579],[1429747200000, 0.188533],[1429833600000, 0.187619],[1429920000000, 0.187861],[1430006400000, 0.187861],[1430092800000, 0.187861],[1430179200000, 0.191757],[1430265600000, 0.186995],[1430352000000, 0.176492]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});