我想使用
更改绘图的坐标系public function build()
{
if($this->notification->receiver == 'the special user') {
return;
} else {
return $this->from('somebody@somewhere.com', 'Sender Name')
->subject('some subject')
->view('emails.notification')
->text('emails.notification_plain');
}
}
但是我只想对轴进行对数变换,而不想对需要绘制的变量X的值进行对数变换(因为它们包括零值)。
我不希望xticks之间有相等的间距。