$(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: 'Курс EEK, грн'},
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: 'Курс EEK',
data: [[1251763200000,0.728714],[1251849600000,0.730035],[1251936000000,0.725696],[1252022400000,0.731565],[1252108800000,0.728751],[1252195200000,0.728751],[1252281600000,0.728751],[1252368000000,0.732225],[1252454400000,0.739717],[1252540800000,0.742036],[1252627200000,0.743155],[1252713600000,0.745939],[1252800000000,0.745939],[1252886400000,0.745939],[1252972800000,0.744206],[1253059200000,0.747443],[1253145600000,0.750512],[1253232000000,0.752826],[1253318400000,0.752468],[1253404800000,0.752468],[1253491200000,0.752468],[1253577600000,0.750091],[1253664000000,0.756334],[1253750400000,0.756487],[1253836800000,0.75572],[1253923200000,0.750705],[1254009600000,0.750705],[1254096000000,0.750705],[1254182400000,0.749981],[1254268800000,0.74481]],
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: [[1251763200000, 0.728714],[1251763200000, 0.728714],[1251849600000, 0.730035],[1251936000000, 0.725696],[1252022400000, 0.731565],[1252108800000, 0.728751],[1252195200000, 0.728751],[1252281600000, 0.728751],[1252368000000, 0.732225],[1252454400000, 0.739717],[1252540800000, 0.742036],[1252627200000, 0.743155],[1252713600000, 0.745939],[1252800000000, 0.745939],[1252886400000, 0.745939],[1252972800000, 0.744206],[1253059200000, 0.747443],[1253145600000, 0.750512],[1253232000000, 0.752826],[1253318400000, 0.752468],[1253404800000, 0.752468],[1253491200000, 0.752468],[1253577600000, 0.750091],[1253664000000, 0.756334],[1253750400000, 0.756487],[1253836800000, 0.755720],[1253923200000, 0.750705],[1254009600000, 0.750705],[1254096000000, 0.750705],[1254182400000, 0.749981],[1254268800000, 0.744810]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});