$(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: 'Курс BYN, грн'},
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: 'Курс BYN',
data: [[1425168000000,0.00188],[1425254400000,0.00188],[1425340800000,0.0018],[1425427200000,0.00166],[1425513600000,0.00158],[1425600000000,0.00153],[1425686400000,0.00152],[1425772800000,0.00152],[1425859200000,0.00152],[1425945600000,0.00152],[1426032000000,0.00145],[1426118400000,0.00144],[1426204800000,0.00142],[1426291200000,0.00143],[1426377600000,0.00143],[1426464000000,0.00143],[1426550400000,0.00145],[1426636800000,0.00147],[1426723200000,0.00154],[1426809600000,0.00155],[1426896000000,0.00157],[1426982400000,0.00157],[1427068800000,0.00157],[1427155200000,0.00157],[1427241600000,0.00159],[1427328000000,0.00162],[1427414400000,0.00161],[1427500800000,0.00162],[1427587200000,0.00162],[1427673600000,0.00162],[1427760000000,0.0016]],
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: [[1425168000000, 0.001880],[1425168000000, 0.001880],[1425254400000, 0.001880],[1425340800000, 0.001800],[1425427200000, 0.001660],[1425513600000, 0.001580],[1425600000000, 0.001530],[1425686400000, 0.001520],[1425772800000, 0.001520],[1425859200000, 0.001520],[1425945600000, 0.001520],[1426032000000, 0.001450],[1426118400000, 0.001440],[1426204800000, 0.001420],[1426291200000, 0.001430],[1426377600000, 0.001430],[1426464000000, 0.001430],[1426550400000, 0.001450],[1426636800000, 0.001470],[1426723200000, 0.001540],[1426809600000, 0.001550],[1426896000000, 0.001570],[1426982400000, 0.001570],[1427068800000, 0.001570],[1427155200000, 0.001570],[1427241600000, 0.001590],[1427328000000, 0.001620],[1427414400000, 0.001610],[1427500800000, 0.001620],[1427587200000, 0.001620],[1427673600000, 0.001620],[1427760000000, 0.001600]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});