$(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: [[1257033600000,0.0878482],[1257120000000,0.0878482],[1257206400000,0.0888542],[1257292800000,0.088797],[1257379200000,0.0880912],[1257465600000,0.0887127],[1257552000000,0.0881508],[1257638400000,0.0881508],[1257724800000,0.0881508],[1257811200000,0.0888114],[1257897600000,0.0888992],[1257984000000,0.0889443],[1258070400000,0.0888332],[1258156800000,0.0890454],[1258243200000,0.0890454],[1258329600000,0.0890454],[1258416000000,0.0892551],[1258502400000,0.0895267],[1258588800000,0.0896018],[1258675200000,0.0899321],[1258761600000,0.089764],[1258848000000,0.089764],[1258934400000,0.089764],[1259020800000,0.0899003],[1259107200000,0.0902182],[1259193600000,0.0911717],[1259280000000,0.0920288],[1259366400000,0.092151],[1259452800000,0.092151],[1259539200000,0.092151]],
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: [[1257033600000, 0.087848],[1257033600000, 0.087848],[1257120000000, 0.087848],[1257206400000, 0.088854],[1257292800000, 0.088797],[1257379200000, 0.088091],[1257465600000, 0.088713],[1257552000000, 0.088151],[1257638400000, 0.088151],[1257724800000, 0.088151],[1257811200000, 0.088811],[1257897600000, 0.088899],[1257984000000, 0.088944],[1258070400000, 0.088833],[1258156800000, 0.089045],[1258243200000, 0.089045],[1258329600000, 0.089045],[1258416000000, 0.089255],[1258502400000, 0.089527],[1258588800000, 0.089602],[1258675200000, 0.089932],[1258761600000, 0.089764],[1258848000000, 0.089764],[1258934400000, 0.089764],[1259020800000, 0.089900],[1259107200000, 0.090218],[1259193600000, 0.091172],[1259280000000, 0.092029],[1259366400000, 0.092151],[1259452800000, 0.092151],[1259539200000, 0.092151]],
tooltip: {valueSuffix: ' грн'},
type: 'spline',
step: false,
color: '#0000CC',
threshold: null
}]
});
});