diff options
author | EricSeynaeve <github@nosperse.com> | 2013-02-28 23:07:09 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-19 02:36:46 +0100 |
commit | bf033461c5cb0053253f410da7f17dd2e12771c3 (patch) | |
tree | c145918c8a4fbe92c2d60aeaea90a6b5611a4e15 /offapi | |
parent | 91c8b357ee2a27e50da0e99386e53d351e55cfda (diff) |
fdo#61135 stepped lines graph: handle ods files
The boilerplate code for drawing the 4 types of stepped is in place (as
described in ODF1.3,
https://tools.oasis-open.org/issues/browse/OFFICE-3662).
We can also read the current attribute values used in Gnumeric. These values
are converted to ODF1.3 during save.
Change-Id: I0f04a779de4b65326ed7ce6de56191f11b51c596
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/chart2/CurveStyle.idl | 42 |
1 files changed, 41 insertions, 1 deletions
diff --git a/offapi/com/sun/star/chart2/CurveStyle.idl b/offapi/com/sun/star/chart2/CurveStyle.idl index 31641862a782..65a7947934ec 100644 --- a/offapi/com/sun/star/chart2/CurveStyle.idl +++ b/offapi/com/sun/star/chart2/CurveStyle.idl @@ -48,7 +48,47 @@ enum CurveStyle /** */ - NURBS + NURBS, + + /** Data points are connected via a 2-segmented stepped line. + The line starts horizontally. + O + | + | + | + O-----+ + */ + STEP_START, + + /** Data points are connected via a 2-segmented stepped line. + The line ends horizontally. + +------O + | + | + | + O + */ + STEP_END, + + /** Data points are connected via a 3-segmented stepped line. + The lines is horizontal till the center of the X values. + +--O + | + | + | + O--+ + */ + STEP_CENTER_X, + + /** Data points are connected via a 3-segmented stepped line. + The lines is horizontal at the center of the Y values. + O + | + +-----+ + | + O + */ + STEP_CENTER_Y }; } ; // chart2 |