(chartArea)
| 1619 | } |
| 1620 | |
| 1621 | draw(chartArea) { |
| 1622 | if (!this._isVisible()) { |
| 1623 | return; |
| 1624 | } |
| 1625 | |
| 1626 | this.drawBackground(); |
| 1627 | this.drawGrid(chartArea); |
| 1628 | this.drawBorder(); |
| 1629 | this.drawTitle(); |
| 1630 | this.drawLabels(chartArea); |
| 1631 | } |
| 1632 | |
| 1633 | /** |
| 1634 | * @return {object[]} |
no test coverage detected