getPlotAreaOrThrow()); } public function testNoPlotArea(): void { $chart = new Chart('chart1'); $this->expectException(ChartException::class); $this->expectExceptionMessage('Chart has no PlotArea'); $chart->getPlotAreaOrThrow(); } }