$(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: 'Курс RUB, грн'},
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: 'Курс RUB',
data: [[1104883200000,0.17545],[1104969600000,0.19119],[1105056000000,0.19118],[1105142400000,null],[1105228800000,0.19118],[1105315200000,null],[1105401600000,0.19117],[1105488000000,0.18976],[1105574400000,0.19027],[1105660800000,0.19035],[1105747200000,0.18981],[1105833600000,0.18981],[1105920000000,0.18981],[1106006400000,0.18967],[1106092800000,0.18868],[1106179200000,0.18836],[1106265600000,0.18836],[1106352000000,0.18838],[1106438400000,0.18838],[1106524800000,0.18838],[1106611200000,null],[1106697600000,0.18956],[1106784000000,0.18875],[1106870400000,0.18941],[1106956800000,0.18886],[1107043200000,0.18886],[1107129600000,0.18865]],
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: [[1104883200000, 0.175450],[1104883200000, 0.175450],[1104969600000, 0.191190],[1105056000000, 0.191180],[1105228800000, 0.191180],[1105401600000, 0.191170],[1105488000000, 0.189760],[1105574400000, 0.190270],[1105660800000, 0.190350],[1105747200000, 0.189810],[1105833600000, 0.189810],[1105920000000, 0.189810],[1106006400000, 0.189670],[1106092800000, 0.188680],[1106179200000, 0.188360],[1106265600000, 0.188360],[1106352000000, 0.188380],[1106438400000, 0.188380],[1106524800000, 0.188380],[1106697600000, 0.189560],[1106784000000, 0.188750],[1106870400000, 0.189410],[1106956800000, 0.188860],[1107043200000, 0.188860],[1107129600000, 0.188650]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});