什麼方法使得左上角的 chart 像右下角 的 chart 這樣居中
右下角的是示例 Metrics\Tikets ,裡面程式碼並沒有指定 margin ,height等屬性
protected function init()
{
parent::init();
$color = Admin::color();
$colors = [$color->primary(), $color->alpha('blue2', 0.5)];
$this->title('訂單詳情');
$this->subTitle('最近一個月');
$this->chartLabels($this->labels);
// 設定圖表顏色
$this->chartColors($colors);
}
/**
* 渲染模板
*
* @return string
*/
public function render()
{
$this->fill();
return parent::render();
}
/**
* 寫入資料.
*
* @return void
*/
public function fill()
{
// $this->withContent(44.9, 28.6);
// 圖表資料
$this->withChart();
}
只有 charts 也無法自動居中
本作品採用《CC 協議》,轉載必須註明作者和本文連結