diff options
author | Tünde Tóth <tundeth@gmail.com> | 2020-03-06 10:29:03 +0100 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2020-04-09 11:12:22 +0200 |
commit | 40d83914d43f60a196dfabddea0b52e2046b333a (patch) | |
tree | 86165bf504f42aba1195249c48f0a109722e23b3 /offapi | |
parent | 31de39108ce19c002ab4ef6ab369dd5bfa668634 (diff) |
tdf#127792 implement UNO chart attribute MajorOrigin
based on the specification in OFFICE-3936 for ODF 1.4:
https://issues.oasis-open.org/browse/OFFICE-3936
Note: import of the embedded chart of the DOCX unit test
document uses also ODF format in the background, testing
also the extension of the native file format.
Follow-up of commit 830e539547c463b932ce643517f880789185032d
(tdf#127393 OOXML chart import: fix X axis position setting
"CrossBetween"). See also commits with "ShiftedCategoryPosition"
in their descriptions.
Change-Id: I9cd278ac0172c0fab7c51d585a65c34a0ad60b82
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90081
Tested-by: László Németh <nemeth@numbertext.org>
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/chart2/Axis.idl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/Axis.idl b/offapi/com/sun/star/chart2/Axis.idl index fc3a0f564c54..678d9a9a56a1 100644 --- a/offapi/com/sun/star/chart2/Axis.idl +++ b/offapi/com/sun/star/chart2/Axis.idl @@ -141,6 +141,12 @@ service Axis */ [optional, property] boolean TryStaggeringFirst; + /** This attribute specifies the shift of the first major tick from the origin. + + @since LibreOffice 7.0 + */ + [optional, property] long MajorOrigin; + }; } ; // chart2 |