$(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: 'Курс NOK, грн'},
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: 'Курс NOK',
data: [[1180656000000,0.836722],[1180742400000,0.836541],[1180828800000,0.836541],[1180915200000,0.836541],[1181001600000,0.839663],[1181088000000,0.845332],[1181174400000,0.844562],[1181260800000,0.841667],[1181347200000,0.832201],[1181433600000,0.832201],[1181520000000,0.832201],[1181606400000,null],[1181692800000,0.830824],[1181779200000,0.828285],[1181865600000,null],[1181952000000,null],[1182038400000,0.830737],[1182124800000,0.830737],[1182211200000,0.838269],[1182297600000,0.837791],[1182384000000,null],[1182470400000,0.842054],[1182556800000,0.849844],[1182643200000,0.849844],[1182729600000,0.849844],[1182816000000,0.849301],[1182902400000,0.848602],[1182988800000,0.8512],[1183075200000,0.8512],[1183161600000,0.8512]],
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: [[1180656000000, 0.836722],[1180656000000, 0.836722],[1180742400000, 0.836541],[1180828800000, 0.836541],[1180915200000, 0.836541],[1181001600000, 0.839663],[1181088000000, 0.845332],[1181174400000, 0.844562],[1181260800000, 0.841667],[1181347200000, 0.832201],[1181433600000, 0.832201],[1181520000000, 0.832201],[1181692800000, 0.830824],[1181779200000, 0.828285],[1182038400000, 0.830737],[1182124800000, 0.830737],[1182211200000, 0.838269],[1182297600000, 0.837791],[1182470400000, 0.842054],[1182556800000, 0.849844],[1182643200000, 0.849844],[1182729600000, 0.849844],[1182816000000, 0.849301],[1182902400000, 0.848602],[1182988800000, 0.851200],[1183075200000, 0.851200],[1183161600000, 0.851200]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});