summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--offapi/com/sun/star/chart2/CurveStyle.idl12
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
};