| OLD | NEW |
| 1 /* | 1 /* |
| 2 * ChartNew.js | 2 * ChartNew.js |
| 3 * | 3 * |
| 4 * Vancoppenolle Francois - January 2014 | 4 * Vancoppenolle Francois - January 2014 |
| 5 * francois.vancoppenolle@favomo.be | 5 * francois.vancoppenolle@favomo.be |
| 6 * | 6 * |
| 7 * Source location : http:\\www.favomo.be\graphjs | 7 * Source location : http:\\www.favomo.be\graphjs |
| 8 * GitHub community : https://github.com/FVANCOP/ChartNew.js | 8 * GitHub community : https://github.com/FVANCOP/ChartNew.js |
| 9 * | 9 * |
| 10 * This file is an adaptation of the chart.js source developped by Nick Downie (
2013) | 10 * This file is an adaptation of the chart.js source developped by Nick Downie (
2013) |
| (...skipping 6471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6482 ctx.textAlign = "left"; | 6482 ctx.textAlign = "left"; |
| 6483 ctx.textBaseline = "bottom"; | 6483 ctx.textBaseline = "bottom"; |
| 6484 ctx.translate(xpos + config.legendBlockSize + co
nfig.legendSpaceBetweenBoxAndText, ypos); | 6484 ctx.translate(xpos + config.legendBlockSize + co
nfig.legendSpaceBetweenBoxAndText, ypos); |
| 6485 ctx.fillText(lgtxt, 0, 0); | 6485 ctx.fillText(lgtxt, 0, 0); |
| 6486 ctx.stroke(); | 6486 ctx.stroke(); |
| 6487 ctx.restore(); | 6487 ctx.restore(); |
| 6488 } | 6488 } |
| 6489 } | 6489 } |
| 6490 } | 6490 } |
| 6491 }; | 6491 }; |
| OLD | NEW |