$(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: 'Курс HUF, грн'},
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: 'Курс HUF',
data: [[1383264000000,0.036974],[1383350400000,null],[1383436800000,0.036405],[1383523200000,0.036405],[1383609600000,0.036502],[1383696000000,0.036316],[1383782400000,0.036412],[1383868800000,0.036117],[1383955200000,0.036241],[1384041600000,0.036241],[1384128000000,0.036241],[1384214400000,0.036011],[1384300800000,0.035967],[1384387200000,0.035902],[1384473600000,0.036083],[1384560000000,0.036053],[1384646400000,0.036053],[1384732800000,0.036053],[1384819200000,0.03637],[1384905600000,0.036342],[1384992000000,0.036431],[1385078400000,0.0362],[1385164800000,0.036261],[1385251200000,0.036261],[1385337600000,0.036261],[1385424000000,0.036222],[1385510400000,0.036248],[1385596800000,0.036336],[1385683200000,0.036279],[1385769600000,0.036132]],
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: [[1383264000000, 0.036974],[1383264000000, 0.036974],[1383436800000, 0.036405],[1383523200000, 0.036405],[1383609600000, 0.036502],[1383696000000, 0.036316],[1383782400000, 0.036412],[1383868800000, 0.036117],[1383955200000, 0.036241],[1384041600000, 0.036241],[1384128000000, 0.036241],[1384214400000, 0.036011],[1384300800000, 0.035967],[1384387200000, 0.035902],[1384473600000, 0.036083],[1384560000000, 0.036053],[1384646400000, 0.036053],[1384732800000, 0.036053],[1384819200000, 0.036370],[1384905600000, 0.036342],[1384992000000, 0.036431],[1385078400000, 0.036200],[1385164800000, 0.036261],[1385251200000, 0.036261],[1385337600000, 0.036261],[1385424000000, 0.036222],[1385510400000, 0.036248],[1385596800000, 0.036336],[1385683200000, 0.036279],[1385769600000, 0.036132]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});