$(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: 'Курс CZK, грн'},
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: 'Курс CZK',
data: [[1183248000000,0.236882],[1183334400000,0.236882],[1183420800000,0.238784],[1183507200000,0.23868],[1183593600000,0.239628],[1183680000000,0.240426],[1183766400000,0.239868],[1183852800000,0.239868],[1183939200000,0.239868],[1184025600000,0.239882],[1184112000000,0.241061],[1184198400000,0.243907],[1184284800000,0.24558],[1184371200000,0.245777],[1184457600000,0.245777],[1184544000000,0.245777],[1184630400000,0.246744],[1184716800000,0.245989],[1184803200000,0.246332],[1184889600000,0.246777],[1184976000000,0.246718],[1185062400000,0.246718],[1185148800000,0.246718],[1185235200000,0.247574],[1185321600000,0.247868],[1185408000000,0.246798],[1185494400000,0.246395],[1185580800000,0.245968],[1185667200000,0.245968],[1185753600000,0.245968]],
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: [[1183248000000, 0.236882],[1183248000000, 0.236882],[1183334400000, 0.236882],[1183420800000, 0.238784],[1183507200000, 0.238680],[1183593600000, 0.239628],[1183680000000, 0.240426],[1183766400000, 0.239868],[1183852800000, 0.239868],[1183939200000, 0.239868],[1184025600000, 0.239882],[1184112000000, 0.241061],[1184198400000, 0.243907],[1184284800000, 0.245580],[1184371200000, 0.245777],[1184457600000, 0.245777],[1184544000000, 0.245777],[1184630400000, 0.246744],[1184716800000, 0.245989],[1184803200000, 0.246332],[1184889600000, 0.246777],[1184976000000, 0.246718],[1185062400000, 0.246718],[1185148800000, 0.246718],[1185235200000, 0.247574],[1185321600000, 0.247868],[1185408000000, 0.246798],[1185494400000, 0.246395],[1185580800000, 0.245968],[1185667200000, 0.245968],[1185753600000, 0.245968]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});