$(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: 'Курс JPY, грн'},
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: 'Курс JPY',
data: [[1168041600000,0.0427526],[1168128000000,0.0427526],[1168214400000,0.0427526],[1168300800000,0.0427526],[1168387200000,0.0423425],[1168473600000,0.0423185],[1168560000000,0.0419885],[1168646400000,0.0419413],[1168732800000,0.0419413],[1168819200000,0.0419413],[1168905600000,0.0418923],[1168992000000,0.0418587],[1169078400000,0.0418558],[1169164800000,0.0416201],[1169251200000,0.0416457],[1169337600000,0.0416457],[1169424000000,0.0416457],[1169510400000,0.0414694],[1169596800000,0.0416732],[1169683200000,0.0415508],[1169769600000,0.0417765],[1169856000000,0.0415736],[1169942400000,0.0415736],[1170028800000,0.0415736],[1170115200000,0.0413767],[1170201600000,0.0414638]],
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: [[1168041600000, 0.042753],[1168041600000, 0.042753],[1168128000000, 0.042753],[1168214400000, 0.042753],[1168300800000, 0.042753],[1168387200000, 0.042342],[1168473600000, 0.042319],[1168560000000, 0.041988],[1168646400000, 0.041941],[1168732800000, 0.041941],[1168819200000, 0.041941],[1168905600000, 0.041892],[1168992000000, 0.041859],[1169078400000, 0.041856],[1169164800000, 0.041620],[1169251200000, 0.041646],[1169337600000, 0.041646],[1169424000000, 0.041646],[1169510400000, 0.041469],[1169596800000, 0.041673],[1169683200000, 0.041551],[1169769600000, 0.041777],[1169856000000, 0.041574],[1169942400000, 0.041574],[1170028800000, 0.041574],[1170115200000, 0.041377],[1170201600000, 0.041464]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});