options([ 'legend' => [ 'show' => $display, ], ]); } /** * Determines if the chart grid will be shown. * * @param bool $display * * @return self */ public function grid(bool $display) { return $this->options([ 'grid' => [ 'x' => [ 'show' => $display, ], 'y' => [ 'show' => $display, ], ], ]); } /** * Determines if the chart tooltip will be shown. * * @param bool $display * * @return self */ public function tooltip(bool $display) { return $this->options([ 'tooltip' => [ 'show' => $display, ], ]); } }