If there are no graphs in the examples, it means your browser does not support the canvas tag. You can test your browser's support of the canvas tag here.
Below are basic example graphs that can be plotted by CanvasGraph. Note that you need a compatible browser to view them.
Here is a constantly updated Unit tests page to prevent regressions between versions, and also demonstrate some basic plotting.
Dynamic Graph Generation using Javascript and Tables.
View Source: LinePlotDemo.js
View Source: BarChartDemo.js
View Source: PieChartDemo.js
| x | x2 | x! | sqrt(x) |
|---|---|---|---|
| 0 | 0 | 0 | 0 |
| 1 | 1 | 1 | 1 |
| 2 | 4 | 2 | 1.414 |
| 3 | 9 | 6 | 1 |
| 4 | 16 | 24 | 2 |
| 5 | 25 | 120 | 2.23 |
View Source: TableBarChartDemo.js