$(function () {
$('#recipes').highcharts({
title: {
text: '',
style: {
color: '#222222',
fontWeight: '100'
}
},
xAxis: {
categories: [ 'SUN','MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT'],
},
yAxis: {
labels: {
formatter: function() {
return this.value +'k'
}
},
title: {
enabled: false
}
},
plotOptions: {
series: {
cursor: 'pointer',
color: '#222222'
}
},
legend: {
enabled: false
},
tooltip: {
shared: true,
pointFormat: '{point.x} k',
backgroundColor: '#FFFFFF'
},
series: [{
data: [1, 4.5, 4, 6.7, 1],
pointStart: 1
}]
});
});