$(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: 'Курс PLN, грн'},
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: 'Курс PLN',
data: [[1326758400000,2.33859],[1326844800000,null],[1326931200000,null],[1327017600000,2.38512],[1327104000000,2.38643],[1327190400000,2.38643],[1327276800000,2.38643],[1327363200000,2.42698],[1327449600000,2.41698],[1327536000000,2.40665],[1327622400000,2.47294],[1327708800000,2.48832],[1327795200000,2.48832],[1327881600000,2.48832],[1327968000000,2.46198]],
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: [[1326758400000, 2.338594],[1326758400000, 2.338594],[1327017600000, 2.385117],[1327104000000, 2.386434],[1327190400000, 2.386434],[1327276800000, 2.386434],[1327363200000, 2.426977],[1327449600000, 2.416978],[1327536000000, 2.406647],[1327622400000, 2.472944],[1327708800000, 2.488322],[1327795200000, 2.488322],[1327881600000, 2.488322],[1327968000000, 2.461981]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});