You are here

private property PHPExcel_Chart_Axis::$_line_style_properties in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Axis.php \PHPExcel_Chart_Axis::_line_style_properties

Line Style Properties

Type: array of mixed

File

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

Class

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

Code

private $_line_style_properties = array(
  'width' => '9525',
  'compound' => self::LINE_STYLE_COMPOUND_SIMPLE,
  'dash' => self::LINE_STYLE_DASH_SOLID,
  'cap' => self::LINE_STYLE_CAP_FLAT,
  'join' => self::LINE_STYLE_JOIN_BEVEL,
  'arrow' => array(
    'head' => array(
      'type' => self::LINE_STYLE_ARROW_TYPE_NOARROW,
      'size' => self::LINE_STYLE_ARROW_SIZE_5,
    ),
    'end' => array(
      'type' => self::LINE_STYLE_ARROW_TYPE_NOARROW,
      'size' => self::LINE_STYLE_ARROW_SIZE_8,
    ),
  ),
);