$(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: 'Курс SEK, грн'},
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: 'Курс SEK',
data: [[1338508800000,1.1045],[1338595200000,1.09491],[1338681600000,1.09491],[1338768000000,1.09491],[1338854400000,1.09491],[1338940800000,1.10758],[1339027200000,1.10671],[1339113600000,1.1227],[1339200000000,1.10993],[1339286400000,1.10993],[1339372800000,1.10993],[1339459200000,1.13107],[1339545600000,1.12638],[1339632000000,1.10758],[1339718400000,1.13512],[1339804800000,1.13945],[1339891200000,1.13945],[1339977600000,1.13945],[1340064000000,1.14068],[1340150400000,1.14095],[1340236800000,1.14816],[1340323200000,1.14605],[1340409600000,1.13874],[1340496000000,1.13874],[1340582400000,1.13874],[1340668800000,1.13209],[1340755200000,1.13041],[1340841600000,1.13019],[1340928000000,1.13019],[1341014400000,1.13019]],
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: [[1338508800000, 1.104499],[1338508800000, 1.104499],[1338595200000, 1.094907],[1338681600000, 1.094907],[1338768000000, 1.094907],[1338854400000, 1.094907],[1338940800000, 1.107579],[1339027200000, 1.106708],[1339113600000, 1.122697],[1339200000000, 1.109928],[1339286400000, 1.109928],[1339372800000, 1.109928],[1339459200000, 1.131069],[1339545600000, 1.126380],[1339632000000, 1.107579],[1339718400000, 1.135119],[1339804800000, 1.139447],[1339891200000, 1.139447],[1339977600000, 1.139447],[1340064000000, 1.140675],[1340150400000, 1.140946],[1340236800000, 1.148164],[1340323200000, 1.146050],[1340409600000, 1.138737],[1340496000000, 1.138737],[1340582400000, 1.138737],[1340668800000, 1.132086],[1340755200000, 1.130407],[1340841600000, 1.130192],[1340928000000, 1.130192],[1341014400000, 1.130192]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});