$(function ()
{
	$('#graph_wdir').highcharts(
	{
		title: { text: 'Направление ветра, град.' },
		legend: { enabled: false },
		xAxis:
		{
			title: false,
			type: 'datetime',
			minorTickPosition: 'inside',
			gridLineWidth: 1,
			gridLineDashStyle: 'Dot',
		},
		yAxis:
		{
			title: false,
min: 0, max: 360, tickInterval: 45,			allowDecimals: false,
			showEmpty: false,
			gridLineDashStyle: 'Dot',
			plotLines: [{ value: 0, color: '#f00', width: 2, dashStyle: 'ShortDot'}]
		},
		tooltip:
		{
			formatter: function()
			{
				return '' + this.y + ' град. в ' + moment.utc(this.x).format("HH:mm
DD.MM.YYYY");
			}
		},
		credits: { enabled: false },
		series:
		[
			{
type: 'scatter', marker: { radius: 8 },				data: [  ]
			}
		]
	});
});