| 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 6481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6492 ctx.textAlign = "left"; | 6492 ctx.textAlign = "left"; |
| 6493 ctx.textBaseline = "bottom"; | 6493 ctx.textBaseline = "bottom"; |
| 6494 ctx.translate(xpos + config.legendBlockSize + co
nfig.legendSpaceBetweenBoxAndText, ypos); | 6494 ctx.translate(xpos + config.legendBlockSize + co
nfig.legendSpaceBetweenBoxAndText, ypos); |
| 6495 ctx.fillText(lgtxt, 0, 0); | 6495 ctx.fillText(lgtxt, 0, 0); |
| 6496 ctx.stroke(); | 6496 ctx.stroke(); |
| 6497 ctx.restore(); | 6497 ctx.restore(); |
| 6498 } | 6498 } |
| 6499 } | 6499 } |
| 6500 } | 6500 } |
| 6501 }; | 6501 }; |
| OLD | NEW |