$(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: 'Курс ISK, грн'},
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: 'Курс ISK',
data: [[1448928000000,0.180373],[1449014400000,0.179841],[1449100800000,0.178366],[1449187200000,0.173822],[1449273600000,0.181926],[1449360000000,0.181926],[1449446400000,0.181926],[1449532800000,0.179823],[1449619200000,0.176323],[1449705600000,0.177178],[1449792000000,0.180743],[1449878400000,0.184733],[1449964800000,0.184733],[1450051200000,0.184733],[1450137600000,0.184615],[1450224000000,0.182614],[1450310400000,0.181672],[1450396800000,0.179927],[1450483200000,0.180032],[1450569600000,0.180032],[1450656000000,0.180032],[1450742400000,0.180354],[1450828800000,0.178561],[1450915200000,0.177421],[1451001600000,0.177168],[1451088000000,0.178502],[1451174400000,0.178502],[1451260800000,0.178502],[1451347200000,0.184368],[1451433600000,0.184181],[1451520000000,0.185419]],
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: [[1448928000000, 0.180373],[1448928000000, 0.180373],[1449014400000, 0.179841],[1449100800000, 0.178366],[1449187200000, 0.173822],[1449273600000, 0.181926],[1449360000000, 0.181926],[1449446400000, 0.181926],[1449532800000, 0.179823],[1449619200000, 0.176323],[1449705600000, 0.177178],[1449792000000, 0.180743],[1449878400000, 0.184733],[1449964800000, 0.184733],[1450051200000, 0.184733],[1450137600000, 0.184615],[1450224000000, 0.182614],[1450310400000, 0.181672],[1450396800000, 0.179927],[1450483200000, 0.180032],[1450569600000, 0.180032],[1450656000000, 0.180032],[1450742400000, 0.180354],[1450828800000, 0.178561],[1450915200000, 0.177421],[1451001600000, 0.177168],[1451088000000, 0.178502],[1451174400000, 0.178502],[1451260800000, 0.178502],[1451347200000, 0.184368],[1451433600000, 0.184181],[1451520000000, 0.185419]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});