I have been using HighCharts in my PHP website by migrating it from older charts and I am very impressed by the number of graph options and functions with this library.
var categoryLinks = {
'Foo': 'http://www.google.com',
'Bar': 'http://www.facebook.com',
'Foobar': 'http://www.stackoverflow.com'
};
$('#container').highcharts({
xAxis: {
categories: ['Foo', 'Bar', 'Foobar'],
labels: {
formatter: function () {
return '' +
this.value + '';
}
}
},
series: [{
data: [300, 200, 600]
}]
});