A line chart with alert() warnings prevented

This is a standard line chart and the page also redefines the alert() function so that there are no warnings displayed. You simply need to redefine the alert function before you create the chart.

alert = function (str)
{
    console.log(str);
}
[No canvas support]

« Back