$(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: 'Курс SGD, грн'},
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: 'Курс SGD',
data: [[1120262400000,2.99289],[1120348800000,2.99289],[1120435200000,2.99289],[1120521600000,2.98398],[1120608000000,2.97428],[1120694400000,2.98061],[1120780800000,2.98158],[1120867200000,2.96588],[1120953600000,2.96588],[1121040000000,2.96588],[1121126400000,2.97779],[1121212800000,2.99455],[1121299200000,2.99548],[1121385600000,2.99086],[1121472000000,2.99897],[1121558400000,2.99897],[1121644800000,2.99897],[1121731200000,2.99366],[1121817600000,2.98844],[1121904000000,2.99352],[1121990400000,3.04569],[1122076800000,3.03996],[1122163200000,3.03996],[1122249600000,3.03996],[1122336000000,3.03564],[1122422400000,3.02581],[1122508800000,3.02672],[1122595200000,3.03236],[1122681600000,3.03829],[1122768000000,3.03829]],
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: [[1120262400000, 2.992887],[1120262400000, 2.992887],[1120348800000, 2.992887],[1120435200000, 2.992887],[1120521600000, 2.983978],[1120608000000, 2.974280],[1120694400000, 2.980609],[1120780800000, 2.981582],[1120867200000, 2.965879],[1120953600000, 2.965879],[1121040000000, 2.965879],[1121126400000, 2.977790],[1121212800000, 2.994553],[1121299200000, 2.995483],[1121385600000, 2.990865],[1121472000000, 2.998969],[1121558400000, 2.998969],[1121644800000, 2.998969],[1121731200000, 2.993661],[1121817600000, 2.988442],[1121904000000, 2.993521],[1121990400000, 3.045695],[1122076800000, 3.039964],[1122163200000, 3.039964],[1122249600000, 3.039964],[1122336000000, 3.035636],[1122422400000, 3.025810],[1122508800000, 3.026718],[1122595200000, 3.032356],[1122681600000, 3.038291],[1122768000000, 3.038291]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});