You are here

public function PHPExcel_Chart_Axis::setAxisOptionsProperties in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php \PHPExcel_Chart_Axis::setAxisOptionsProperties()

Set Axis Options Properties

Parameters

string $axis_labels:

string $horizontal_crosses_value:

string $horizontal_crosses:

string $axis_orientation:

string $major_tmt:

string $minor_tmt:

string $minimum:

string $maximum:

string $major_unit:

string $minor_unit:

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php, line 191

Class

PHPExcel_Chart_Axis
Created by PhpStorm. User: Wiktor Trzonkowski Date: 6/17/14 Time: 12:11 PM

Code

public function setAxisOptionsProperties($axis_labels, $horizontal_crosses_value = NULL, $horizontal_crosses = NULL, $axis_orientation = NULL, $major_tmt = NULL, $minor_tmt = NULL, $minimum = NULL, $maximum = NULL, $major_unit = NULL, $minor_unit = NULL) {
  $this->_axis_options['axis_labels'] = (string) $axis_labels;
  $horizontal_crosses_value !== NULL ? $this->_axis_options['horizontal_crosses_value'] = (string) $horizontal_crosses_value : NULL;
  $horizontal_crosses !== NULL ? $this->_axis_options['horizontal_crosses'] = (string) $horizontal_crosses : NULL;
  $axis_orientation !== NULL ? $this->_axis_options['orientation'] = (string) $axis_orientation : NULL;
  $major_tmt !== NULL ? $this->_axis_options['major_tick_mark'] = (string) $major_tmt : NULL;
  $minor_tmt !== NULL ? $this->_axis_options['minor_tick_mark'] = (string) $minor_tmt : NULL;
  $minor_tmt !== NULL ? $this->_axis_options['minor_tick_mark'] = (string) $minor_tmt : NULL;
  $minimum !== NULL ? $this->_axis_options['minimum'] = (string) $minimum : NULL;
  $maximum !== NULL ? $this->_axis_options['maximum'] = (string) $maximum : NULL;
  $major_unit !== NULL ? $this->_axis_options['major_unit'] = (string) $major_unit : NULL;
  $minor_unit !== NULL ? $this->_axis_options['minor_unit'] = (string) $minor_unit : NULL;
}