kevinkhill / lavacharts

Lavacharts is a graphing / charting library for PHP 5.4+ that wraps Google's Javascript Chart API.
http://lavacharts.com
Other
620 stars 142 forks source link

OrgChart.php references trait "PngOutputTrait" instead of "PngRenderableTrait" #344

Open autodidact1958 opened 2 years ago

autodidact1958 commented 2 years ago

What Version?

3.1.14

Issue

Build an OrgChart. Laravel (8.0) throws error "Trait 'Khill\Lavacharts\Support\Traits\PngOutputTrait' not found"

Controller Code (chart creation code)

Normal code. I fixed the problem (see below)

View Code

khill/lavacharts/src/Charts/OrgChart.php line: 5 references

"use Khill\Lavacharts\Support\Traits\PngOutputTrait as PngRenderable;"

that is unknown. 

Solution

Change line 5 to


"use Khill\Lavacharts\Support\Traits\PngRenderableTrait as PngRenderable;"

and all is fine.