mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-08-30 20:18:00 +00:00
@@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019-2025 PhpSpreadsheet Authors
|
||||
Copyright (c) 2019-2026 PhpSpreadsheet Authors
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
[](https://coveralls.io/github/PHPOffice/PhpSpreadsheet?branch=master)
|
||||
[](https://packagist.org/packages/phpoffice/phpspreadsheet)
|
||||
[](https://packagist.org/packages/phpoffice/phpspreadsheet)
|
||||
[](https://packagist.org/packages/phpoffice/phpspreadsheet)
|
||||
[](https://packagist.org/packages/phpoffice/phpspreadsheet)
|
||||
[](https://gitter.im/PHPOffice/PhpSpreadsheet)
|
||||
|
||||
PhpSpreadsheet is a library written in pure PHP and offers a set of classes that
|
||||
|
||||
@@ -313,7 +313,6 @@ class Chart
|
||||
|
||||
break;
|
||||
case 'scatterChart':
|
||||
/** @var string $scatterStyle */
|
||||
$scatterStyle = self::getAttributeString($chartDetail->scatterStyle, 'val');
|
||||
$plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey);
|
||||
$plotSer->setPlotStyle($scatterStyle);
|
||||
@@ -330,7 +329,6 @@ class Chart
|
||||
|
||||
break;
|
||||
case 'radarChart':
|
||||
/** @var string $radarStyle */
|
||||
$radarStyle = self::getAttributeString($chartDetail->radarStyle, 'val');
|
||||
$plotSer = $this->chartDataSeries($chartDetail, $chartDetailKey);
|
||||
$plotSer->setPlotStyle($radarStyle);
|
||||
@@ -1465,11 +1463,8 @@ class Chart
|
||||
if (is_numeric($lineWidthTemp)) {
|
||||
$lineWidth = ChartProperties::xmlToPoints($lineWidthTemp);
|
||||
}
|
||||
/** @var string $compoundType */
|
||||
$compoundType = self::getAttributeString($sppr->ln, 'cmpd');
|
||||
/** @var string $dashType */
|
||||
$dashType = self::getAttributeString($sppr->ln->prstDash, 'val');
|
||||
/** @var string $capType */
|
||||
$capType = self::getAttributeString($sppr->ln, 'cap');
|
||||
if (isset($sppr->ln->miter)) {
|
||||
$joinType = ChartProperties::LINE_STYLE_JOIN_MITER;
|
||||
|
||||
Reference in New Issue
Block a user