. */ /** * For more information, please contact */ namespace Goat1000\SVGGraph; class StackedBarGraph extends BarGraph { use StackedBarTrait; public function __construct($w, $h, $settings, $fixed_settings = []) { $fixed = [ 'single_axis' => true ]; $fixed_settings = array_merge($fixed, $fixed_settings); parent::__construct($w, $h, $settings, $fixed_settings); } }