From abb24f48e7cdc4b5fa1fb370f425e7c56e8cd317 Mon Sep 17 00:00:00 2001 From: Chimit Date: Thu, 25 Jan 2024 22:19:38 +0800 Subject: [PATCH] Added missing $this return --- src/LarapexChart.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/LarapexChart.php b/src/LarapexChart.php index 1e22b8f..b3b8455 100644 --- a/src/LarapexChart.php +++ b/src/LarapexChart.php @@ -263,6 +263,7 @@ public function setDataLabels(bool $enabled = true) :LarapexChart public function setTheme(string $theme) :LarapexChart { $this->theme = $theme; + return $this; } public function setSparkline(bool $enabled = true): LarapexChart