DATASERIES_TYPE_STRING
DATASERIES_TYPE_STRING = 'String'
$dataType : string
Series Data Type.
$dataSource : string
Series Data Source.
$formatCode : string
Format Code.
$pointMarker : string
Series Point Marker.
$pointCount : int
Point Count (The number of datapoints in the dataseries).
$dataValues : array
Data Values.
$fillColor : string|string[]
Fill color (can be array with colors if dataseries have custom colors).
$lineWidth : int
Line Width.
__construct(string $dataType = self::DATASERIES_TYPE_NUMBER, string $dataSource = null, null|mixed $formatCode = null, int $pointCount, mixed $dataValues = [], null|mixed $marker = null, null|string|string[] $fillColor = null) : mixed
Create a new DataSeriesValues object.
string | $dataType | |
string | $dataSource | |
null|mixed | $formatCode | |
int | $pointCount | |
mixed | $dataValues | |
null|mixed | $marker | |
null|string|string[] | $fillColor |
setDataType(string $dataType) : $this
Set Series Data Type.
string | $dataType | Datatype of this data series Typical values are: DataSeriesValues::DATASERIES_TYPE_STRING Normally used for axis point values DataSeriesValues::DATASERIES_TYPE_NUMBER Normally used for chart data values |