X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/platform/core/chart/src
home
/
gfecatvj
/
sites
/
restate
/
platform
/
core
/
chart
/
src
/
📁
..
📄
AreaChart.php
(962 B)
📄
BarChart.php
(1.06 KB)
📄
DonutChart.php
(1.37 KB)
📁
Interfaces
📄
LineChart.php
(2.55 KB)
📄
Plugin.php
(146 B)
📁
Providers
📁
Supports
Editing: AreaChart.php
<?php namespace Botble\Chart; use Botble\Chart\Supports\Chart; use Botble\Chart\Supports\ChartTypes; class AreaChart extends Chart { /** * Change the opacity of the area fill colour. * Accepts values between 0.0 (for completely transparent) and 1.0 (for completely opaque). * * @brief Opacity * * @var string */ protected $fillOpacity = 'auto'; /** * Set to true to overlay the areas on top of each other instead of stacking them. * * @brief Line * * @var bool */ protected $behaveLikeLine = false; /** * @var array */ protected $pointFillColors = []; /** * @var array */ protected $pointStrokeColors = []; /** * @var array */ protected $lineColors = []; /** * Create an instance of MorrisAreaCharts class */ public function __construct() { parent::__construct(ChartTypes::AREA); } }
Upload File
Create Folder