(width, height, force)
| 742 | let shouldSetLegend = false; |
| 743 | |
| 744 | function _setSize(width, height, force) { |
| 745 | if (force || (width != self.width || height != self.height)) |
| 746 | calcSize(width, height); |
| 747 | |
| 748 | resetYSeries(false); |
| 749 | |
| 750 | shouldConvergeSize = true; |
| 751 | shouldSetSize = true; |
| 752 | |
| 753 | commit(); |
| 754 | } |
| 755 | |
| 756 | function calcSize(width, height) { |
| 757 | // log("calcSize()", arguments); |
no test coverage detected
searching dependent graphs…