()
| 8 | } |
| 9 | |
| 10 | drawBg(){ |
| 11 | let x = this.canvas.width * this.config.yAxis; |
| 12 | let y = this.canvas.height - this.canvas.height * this.config.xAxis; |
| 13 | |
| 14 | this.drawGrid( x, y ); |
| 15 | this.drawAxes( x, y ); |
| 16 | } |
| 17 | |
| 18 | drawAxes( x, y, lineWidth = 2 ){ |
| 19 | this.context.strokeStyle = "#88A"; |