$(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: 'Курс DKK, грн'},
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: 'Курс DKK',
data: [[1370044800000,1.39433],[1370131200000,1.39433],[1370217600000,1.39433],[1370304000000,1.39482],[1370390400000,1.40377],[1370476800000,1.40109],[1370563200000,1.40651],[1370649600000,1.42154],[1370736000000,1.42154],[1370822400000,1.42154],[1370908800000,1.41603],[1370995200000,1.42261],[1371081600000,1.42311],[1371168000000,1.42681],[1371254400000,1.42569],[1371340800000,1.42569],[1371427200000,1.42569],[1371513600000,1.42926],[1371600000000,1.43305],[1371686400000,1.43646],[1371772800000,1.41454],[1371859200000,1.41251],[1371945600000,1.41251],[1372032000000,1.41251],[1372118400000,1.41251],[1372204800000,1.40737],[1372291200000,1.39547],[1372377600000,1.39644],[1372464000000,1.39644],[1372550400000,1.39644]],
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: [[1370044800000, 1.394329],[1370044800000, 1.394329],[1370131200000, 1.394329],[1370217600000, 1.394329],[1370304000000, 1.394824],[1370390400000, 1.403774],[1370476800000, 1.401094],[1370563200000, 1.406506],[1370649600000, 1.421540],[1370736000000, 1.421540],[1370822400000, 1.421540],[1370908800000, 1.416035],[1370995200000, 1.422609],[1371081600000, 1.423114],[1371168000000, 1.426805],[1371254400000, 1.425691],[1371340800000, 1.425691],[1371427200000, 1.425691],[1371513600000, 1.429258],[1371600000000, 1.433050],[1371686400000, 1.436460],[1371772800000, 1.414539],[1371859200000, 1.412509],[1371945600000, 1.412509],[1372032000000, 1.412509],[1372118400000, 1.412509],[1372204800000, 1.407371],[1372291200000, 1.395472],[1372377600000, 1.396442],[1372464000000, 1.396442],[1372550400000, 1.396442]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});