. */ /** * For more information, please contact */ namespace Goat1000\SVGGraph; class PolarAreaGraph extends PieGraph { use PolarAreaTrait; public function __construct($w, $h, array $settings, array $fixed_settings = []) { $fs = [ 'repeated_keys' => 'error', // no sorting, no percentage, no slice fit 'sort' => false, 'show_label_percent' => false, 'slice_fit' => false, ]; $fs = array_merge($fs, $fixed_settings); parent::__construct($w, $h, $settings, $fs); } }