Change Backends
PowerGraphics.jl uses Julia package extensions to support multiple plotting backends. Load the backend you want before (or alongside) PowerGraphics:
- CairoMakie (recommended): creates static, publication-quality plots —
using CairoMakie - PlotlyLight: creates lightweight interactive HTML plots —
using PlotlyLight
using CairoMakie # or PlotlyLight
using PowerGraphicsIf neither backend is loaded, PowerGraphics.jl will print a warning and plotting functions will not be available.