HTML5 JavaScript Charting Library with a simple API and 10x better performance. Charts are responsive & can run across devices including iPhone, Android, Desktops, etc.
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer", {
data: [
{
type: "column", // "pie", or "scatter" or "line" ...
dataPoints: [
{ x: 10, y: 10 },
{ x: 20, y: 15 },
{ x: 30, y: 25 },
{ x: 40, y: 30 },
{ x: 50, y: 28 }
]
}
]
});
chart.render();
});
here is a dedicated page for performance test