$(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: 'Курс LTL, грн'},
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: 'Курс LTL',
data: [[1304208000000,3.42807],[1304294400000,3.42807],[1304380800000,3.42807],[1304467200000,3.42807],[1304553600000,3.43422],[1304640000000,3.41879],[1304726400000,null],[1304812800000,null],[1304899200000,null],[1304985600000,null],[1305072000000,null],[1305158400000,null],[1305244800000,null],[1305331200000,null],[1305417600000,null],[1305504000000,null],[1305590400000,null],[1305676800000,3.27454]],
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: [[1304208000000, 3.428069],[1304208000000, 3.428069],[1304294400000, 3.428069],[1304380800000, 3.428069],[1304467200000, 3.428069],[1304553600000, 3.434221],[1304640000000, 3.418787],[1305676800000, 3.274540]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});