-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Setting Chart Title and Legend visibility #1433
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
it wrongly matched `<w:pPr` when looking for `<w:p` in that case the cloned block would not be valid XML, and so the generated docx document could not be opened by Word adding the `\b` word boundary to the regex fixes this. the accompanying unit test failed with this message when trying to load the generated file: ``` ErrorException: DOMDocument::loadXML(): Opening and ending tag mismatch: p line 2 and body in Entity, line: 2 ``` This might solve issues such as #681 and #664.
Merge 0.15 to master
…/PHPWord into fix_clone_block
Fix regex in `cloneBlock` function
HTML Title Writer loses text when Title contains a TextRun instead a string.
Merge pull request #1429 from PHPOffice/develop [ci skip]
…. This is useful when using creating PDF from PHPWord (e.g. using dompdf), otherwise the PDF does not contain any layout for table.
Added Dutch (nl-NL)
writer / word2007 / support valign and watermark without paragraph
PHP Notice: Undefined index: document in /home/stefan/Projects/garrcomm/PHPWord/src/PhpWord/Reader/Word2007.php on line 65 PHP Warning: Invalid argument supplied for foreach() in /home/stefan/Projects/garrcomm/PHPWord/src/PhpWord/Reader/Word2007.php on line 65
* Added PHP 7.3 support for travis * mark php 7.3 as failable
* Only add 240 twips when in auto lineRule
[Doc] add/align possible values from class constant
Fix typo in the PR template
RTF writer: Round getPageSizeW and getPageSizeH to avoid decimals
* Added PHP 7.3 support for travis * mark php 7.3 as failable
Fix parsing of Office 365 documents
Fix loading of Sharepoint document
* Added PHP 7.3 support for travis * mark php 7.3 as failable
Adding table layout to the generated HTML
Use dedicated PHPUnit assertions
…develop_upstream
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Checklist:
composer run-script check --timeout=0
and no errors were reported