![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ledger.corals.io/vendor/consoletvs/charts/src/Classes/Echarts/ |
<?php namespace ConsoleTVs\Charts\Classes\Echarts; use ConsoleTVs\Charts\Classes\BaseChart; use ConsoleTVs\Charts\Features\Echarts\Chart as ChartFeatures; class Chart extends BaseChart { use ChartFeatures; /** * Chartjs dataset class. * * @var object */ public $dataset = Dataset::class; /** * Store the theme for the chart. * * @var string */ public $theme = 'default'; /** * Initiates the Chartjs Line Chart. * * @return self */ public function __construct() { parent::__construct(); $this->container = 'charts::echarts.container'; $this->script = 'charts::echarts.script'; return $this->options([ 'legend' => [ 'show' => true, ], 'tooltip' => [ 'show' => true, ], 'xAxis' => [ 'show' => true, ], 'yAxis' => [ 'show' => true, ], ]); } /** * Formats the options. * * @return self */ public function formatOptions(bool $strict = false, bool $noBraces = false) { $this->options([ 'xAxis' => [ 'data' => json_decode($this->formatLabels()), ], ]); return parent::formatOptions($strict, $noBraces); } }