-
Bisal Singh Nayal yazdı
Problem Description: Docx file containing a chart (line chart / scatter chart)which has used a builtin marker'x' gets corrupted when we save it in LO.The reason was that while exporting LO was writing the marker information 'x' as 'X' which MS Word doesn't recognize.‒<c:marker><c:symbol val="X" />. Also the size of the marker was coming 1 less than the actual value. Ex: if size is 7 then it was being written as 6. Solution: During export I have made changes so that now LO writes 'x' in the tag information ‒<c:marker> <c:symbol val="x" />. Now the size of the marker is also being correctly exported. Change-Id: I26b747f9576625bf3acb941322ae418a0bbc6b64 Reviewed-on: https://gerrit.libreoffice.org/9273Tested-by:
Miklos Vajna <vmiklos@collabora.co.uk> Reviewed-by:
Miklos Vajna <vmiklos@collabora.co.uk> Tested-by:
Markus Mohrhard <markus.mohrhard@googlemail.com> Reviewed-by:
Markus Mohrhard <markus.mohrhard@googlemail.com>
ee0bb265