diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-02-15 18:10:44 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-02-15 18:33:35 +0100 |
commit | fd7d08a79ab95996e1949f3dcf1932a047b87529 (patch) | |
tree | 54bba8d3e2d2d65c9343b6a1c59bd1f2ec0e0f0d /offapi | |
parent | d83fb2b2dea1296885fdefda6804c1dea961d48a (diff) |
offapi: fix the ASCII art in chart2.CurveStyle
Change-Id: I3a4097abe5887f0859ea11ac2025cf52689dc4e4
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/chart2/CurveStyle.idl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/offapi/com/sun/star/chart2/CurveStyle.idl b/offapi/com/sun/star/chart2/CurveStyle.idl index 65a7947934ec..e59e05bbcea8 100644 --- a/offapi/com/sun/star/chart2/CurveStyle.idl +++ b/offapi/com/sun/star/chart2/CurveStyle.idl @@ -52,41 +52,53 @@ enum CurveStyle /** Data points are connected via a 2-segmented stepped line. The line starts horizontally. + + \verbatim O | | | O-----+ + \endverbatim */ STEP_START, /** Data points are connected via a 2-segmented stepped line. The line ends horizontally. + + \verbatim +------O | | | O + \endverbatim */ STEP_END, /** Data points are connected via a 3-segmented stepped line. The lines is horizontal till the center of the X values. + + \verbatim +--O | | | O--+ + \endverbatim */ STEP_CENTER_X, /** Data points are connected via a 3-segmented stepped line. The lines is horizontal at the center of the Y values. + + \verbatim O | +-----+ | O + \endverbatim */ STEP_CENTER_Y }; |