$(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: [[1333238400000,1.43398],[1333324800000,1.43398],[1333411200000,1.42985],[1333497600000,1.42948],[1333584000000,1.41104],[1333670400000,1.40302],[1333756800000,1.40302],[1333843200000,null],[1333929600000,1.40302],[1334016000000,1.40258],[1334102400000,1.40756],[1334188800000,1.40969],[1334275200000,1.41195],[1334361600000,1.41138],[1334448000000,1.41138],[1334534400000,1.41138],[1334620800000,1.41138],[1334707200000,1.40945],[1334793600000,1.40542],[1334880000000,1.40479],[1334966400000,1.41621],[1335052800000,1.41621],[1335139200000,1.41621],[1335225600000,1.40982],[1335312000000,1.41295],[1335398400000,1.41784],[1335484800000,1.41892],[1335571200000,1.42096],[1335657600000,1.42096],[1335744000000,1.42096]],
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: [[1333238400000, 1.433976],[1333238400000, 1.433976],[1333324800000, 1.433976],[1333411200000, 1.429850],[1333497600000, 1.429478],[1333584000000, 1.411038],[1333670400000, 1.403022],[1333756800000, 1.403022],[1333929600000, 1.403022],[1334016000000, 1.402583],[1334102400000, 1.407558],[1334188800000, 1.409686],[1334275200000, 1.411953],[1334361600000, 1.411378],[1334448000000, 1.411378],[1334534400000, 1.411378],[1334620800000, 1.411378],[1334707200000, 1.409452],[1334793600000, 1.405418],[1334880000000, 1.404789],[1334966400000, 1.416207],[1335052800000, 1.416207],[1335139200000, 1.416207],[1335225600000, 1.409821],[1335312000000, 1.412947],[1335398400000, 1.417836],[1335484800000, 1.418917],[1335571200000, 1.420964],[1335657600000, 1.420964],[1335744000000, 1.420964]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});