DATASERIES_TYPE_STRING
DATASERIES_TYPE_STRING = 'String'
PHPExcel_Chart_DataSeriesValues
$_dataType : string
Series Data Type
$_dataSource : string
Series Data Source
$_formatCode : string
Format Code
$_marker : string
Series Point Marker
$_pointCount : int
Point Count (The number of datapoints in the dataseries)
$_dataValues : array
Data Values
__construct(mixed $dataType = self::DATASERIES_TYPE_NUMBER, mixed $dataSource = null, mixed $formatCode = null, mixed $pointCount, mixed $dataValues = array(), mixed $marker = null) : mixed
Create a new PHPExcel_Chart_DataSeriesValues object
mixed | $dataType | |
mixed | $dataSource | |
mixed | $formatCode | |
mixed | $pointCount | |
mixed | $dataValues | |
mixed | $marker |
setDataType(string $dataType = self::DATASERIES_TYPE_NUMBER) : \PHPExcel_Chart_DataSeriesValues
Set Series Data Type
string | $dataType | Datatype of this data series Typical values are: PHPExcel_Chart_DataSeriesValues::DATASERIES_TYPE_STRING Normally used for axis point values PHPExcel_Chart_DataSeriesValues::DATASERIES_TYPE_NUMBER Normally used for chart data values |
setDataValues(array $dataValues = array(), bool $refreshDataSource = TRUE) : \PHPExcel_Chart_DataSeriesValues
Set Series Data Values
array | $dataValues | |
bool | $refreshDataSource | TRUE - refresh the value of _dataSource based on the values of $dataValues FALSE - don't change the value of _dataSource |