* Resize the parallel coordinate system.
(parallelModel: ParallelModel, api: ExtensionAPI)
| 172 | * Resize the parallel coordinate system. |
| 173 | */ |
| 174 | resize(parallelModel: ParallelModel, api: ExtensionAPI): void { |
| 175 | const refContainer = layoutUtil.createBoxLayoutReference(parallelModel, api).refContainer; |
| 176 | this._rect = layoutUtil.getLayoutRect(parallelModel.getBoxLayoutParams(), refContainer); |
| 177 | |
| 178 | this._layoutAxes(); |
| 179 | } |
| 180 | |
| 181 | getRect(): graphic.BoundingRect { |
| 182 | return this._rect; |
no test coverage detected