Пример #1
0
 /**
  * Creates the new Filter object to filter the given column label or index.
  *
  * @param  string|int $columnLabelOrIndex The column label or index to filter.
  * @param  array $config Array of options to set.
  * @throws \Khill\Lavacharts\Exceptions\InvalidConfigProperty
  * @throws \Khill\Lavacharts\Exceptions\InvalidConfigValue
  */
 public function __construct($columnLabelOrIndex, $config = [])
 {
     $options = new Options($this->defaults);
     $options->extend($this->extDefaults);
     parent::__construct($options, $columnLabelOrIndex, $config);
 }