Skip to content
Snippets Groups Projects
Commit e990d2b2 authored by Jonathan Foucher's avatar Jonathan Foucher
Browse files

Use fork of PHPWord to be able to set min and max on axes. Fixes...

Use fork of PHPWord to be able to set min and max on axes. Fixes #1000
parent f47da196
Branches hotfix/2025-02-18
No related tags found
No related merge requests found
Pipeline #91454 failed
......@@ -8,6 +8,7 @@
"homepage": "https://soluris.fr/"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
......@@ -34,7 +35,7 @@
"nelmio/cors-bundle": "^2.1",
"oro/doctrine-extensions": "^2.0",
"phpdocumentor/reflection-docblock": "^5",
"phpoffice/phpword": "1.1.*",
"phpoffice/phpword": "dev-master",
"phpspec/prophecy-phpunit": "^2.0",
"ramsey/uuid": "^4.6",
"ramsey/uuid-doctrine": "^1.8",
......@@ -128,6 +129,10 @@
{
"type": "vcs",
"url": "https://github.com/theofidry/AliceBundle"
},
{
"type": "vcs",
"url": "https://github.com/jfoucher/PHPWord"
}
]
}
This diff is collapsed.
......@@ -178,6 +178,10 @@ class MaturityGenerator extends AbstractGenerator implements ImpressionGenerator
'legendPosition' => 'tr',
'showAxisLabels' => true,
'categoryAxisTitle' => 'tt',
'minX' => 0,
'maxX' => 5,
'minY' => 0,
'maxY' => 5,
'dataLabelOptions' => [
'showVal' => false,
'showCatName' => false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment