summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/chart
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/chart')
-rw-r--r--offapi/com/sun/star/chart/BarDiagram.idl10
-rw-r--r--offapi/com/sun/star/chart/ChartAxis.idl12
-rw-r--r--offapi/com/sun/star/chart/ChartDataPointProperties.idl2
-rw-r--r--offapi/com/sun/star/chart/ChartLegend.idl2
-rw-r--r--offapi/com/sun/star/chart/ChartLegendPosition.idl2
-rw-r--r--offapi/com/sun/star/chart/ChartTitle.idl2
-rw-r--r--offapi/com/sun/star/chart/Diagram.idl4
-rw-r--r--offapi/com/sun/star/chart/Dim3DDiagram.idl2
-rw-r--r--offapi/com/sun/star/chart/StackableDiagram.idl4
-rw-r--r--offapi/com/sun/star/chart/StockDiagram.idl24
-rw-r--r--offapi/com/sun/star/chart/XChartData.idl2
-rw-r--r--offapi/com/sun/star/chart/XStatisticDisplay.idl4
12 files changed, 35 insertions, 35 deletions
diff --git a/offapi/com/sun/star/chart/BarDiagram.idl b/offapi/com/sun/star/chart/BarDiagram.idl
index c2f9c3ca2fbf..7b2b8899ddf6 100644
--- a/offapi/com/sun/star/chart/BarDiagram.idl
+++ b/offapi/com/sun/star/chart/BarDiagram.idl
@@ -48,15 +48,15 @@ published service BarDiagram
/** Determines if the bars of a chart are drawn vertically or
horizontally. Default is vertical.
- <p>If Vertical is <FALSE/> you get a column chart rather than
+ <p>If Vertical is `FALSE` you get a column chart rather than
a bar chart.</p>
*/
[property] boolean Vertical;
- /** If <TRUE/>, determines that in a three-dimensional bar chart
+ /** If `TRUE`, determines that in a three-dimensional bar chart
the bars of each series are arranged behind each other in the
- z-direction. If <FALSE/> the arrangement of bars is like in
+ z-direction. If `FALSE` the arrangement of bars is like in
two-dimensional bar charts.
*/
[optional, property] boolean Deep;
@@ -71,10 +71,10 @@ published service BarDiagram
/** If bars of a bar or column chart are attached to different
axis, this property determines how to display those. If
- <TRUE/>, the bars are grouped together in one block for each
+ `TRUE`, the bars are grouped together in one block for each
axis, thus they are painted one group over the other.
- <p>If <FALSE/>, the bars are displayed side-by-side, as if
+ <p>If `FALSE`, the bars are displayed side-by-side, as if
they were all attached to the same axis.</p>
<p>If all data series of a bar or column chart are attached to
diff --git a/offapi/com/sun/star/chart/ChartAxis.idl b/offapi/com/sun/star/chart/ChartAxis.idl
index 4f5d0110f064..14c885ff21e2 100644
--- a/offapi/com/sun/star/chart/ChartAxis.idl
+++ b/offapi/com/sun/star/chart/ChartAxis.idl
@@ -103,25 +103,25 @@ published service ChartAxis
/** The maximum value of the axis scale is calculated by the chart if
- this property is <TRUE/>.
+ this property is `TRUE`.
*/
[optional, property] boolean AutoMax;
/** The minimum value of the axis scale is calculated by the chart if
- this property is <TRUE/>.
+ this property is `TRUE`.
*/
[optional, property] boolean AutoMin;
/** The distance between the main tick marks is calculated by the chart
- if this property is <TRUE/>.
+ if this property is `TRUE`.
*/
[optional, property] boolean AutoStepMain;
/** The number of help intervals within a main interval is calculated by the
- chart if this property is <TRUE/>.
+ chart if this property is `TRUE`.
*/
[optional, property] boolean AutoStepHelp;
@@ -167,7 +167,7 @@ published service ChartAxis
[optional, property] double Origin;
- /** The origin is calculated by the chart if this property is <TRUE/>.
+ /** The origin is calculated by the chart if this property is `TRUE`.
*/
[optional, property] boolean AutoOrigin;
@@ -234,7 +234,7 @@ published service ChartAxis
/** Determines if certain labels are hidden, if they would otherwise overlap.
- In this case, the value of this property must be set to <FALSE/>.
+ In this case, the value of this property must be set to `FALSE`.
*/
[property] boolean TextCanOverlap;
diff --git a/offapi/com/sun/star/chart/ChartDataPointProperties.idl b/offapi/com/sun/star/chart/ChartDataPointProperties.idl
index e89004bd2119..61aeec40547f 100644
--- a/offapi/com/sun/star/chart/ChartDataPointProperties.idl
+++ b/offapi/com/sun/star/chart/ChartDataPointProperties.idl
@@ -70,7 +70,7 @@ published service ChartDataPointProperties
/** is only available if the chart is of type
BarDiagram and Dim3DDiagram and the
property ChartDataPointProperties::Dim3D is
- set to <TRUE/>.
+ set to `TRUE`.
@see BarDiagram
@see Dim3DDiagram@see BarDiagram
diff --git a/offapi/com/sun/star/chart/ChartLegend.idl b/offapi/com/sun/star/chart/ChartLegend.idl
index 7906341f4b62..b6da8e687e2d 100644
--- a/offapi/com/sun/star/chart/ChartLegend.idl
+++ b/offapi/com/sun/star/chart/ChartLegend.idl
@@ -44,7 +44,7 @@ published service ChartLegend
service com::sun::star::drawing::Shape;
- /** If this property is <TRUE/> the position is calculated by the application automatically.
+ /** If this property is `TRUE` the position is calculated by the application automatically.
Setting this property to false will have no effect. Instead use the interface com::sun::star::drawing::XShape
to set a concrete position.
*/
diff --git a/offapi/com/sun/star/chart/ChartLegendPosition.idl b/offapi/com/sun/star/chart/ChartLegendPosition.idl
index 73818a731fcf..19f53a7803f4 100644
--- a/offapi/com/sun/star/chart/ChartLegendPosition.idl
+++ b/offapi/com/sun/star/chart/ChartLegendPosition.idl
@@ -33,7 +33,7 @@ published enum ChartLegendPosition
/** no chart legend is displayed.
<p>To disable the legend you should set the property
- ChartDocument::HasLegend to <FALSE/> instead
+ ChartDocument::HasLegend to `FALSE` instead
of setting this value.</p>
*/
NONE,
diff --git a/offapi/com/sun/star/chart/ChartTitle.idl b/offapi/com/sun/star/chart/ChartTitle.idl
index ebca9e9d62e9..b806b32c7e29 100644
--- a/offapi/com/sun/star/chart/ChartTitle.idl
+++ b/offapi/com/sun/star/chart/ChartTitle.idl
@@ -36,7 +36,7 @@ published service ChartTitle
service com::sun::star::drawing::Shape;
- /** If this property is <TRUE/> the position is calculated by the application automatically.
+ /** If this property is `TRUE` the position is calculated by the application automatically.
Setting this property to false will have no effect. Instead use the interface com::sun::star::drawing::XShape
to set a concrete position.
*/
diff --git a/offapi/com/sun/star/chart/Diagram.idl b/offapi/com/sun/star/chart/Diagram.idl
index 0488d981a059..76f31b00c78f 100644
--- a/offapi/com/sun/star/chart/Diagram.idl
+++ b/offapi/com/sun/star/chart/Diagram.idl
@@ -65,14 +65,14 @@ published service Diagram
[optional] interface com::sun::star::chart::XDiagramPositioning;
- /** If this property is <TRUE/> the position is calculated by the application automatically.
+ /** If this property is `TRUE` the position is calculated by the application automatically.
Setting this property to false will have no effect. Instead use the interface com::sun::star::drawing::XShape
to set a concrete position (note com::sun::star::chart::XDiagram is derived from com::sun::star::drawing::XShape).
*/
[optional, property] boolean AutomaticPosition;
- /** If this property is <TRUE/> the size is calculated by the application automatically.
+ /** If this property is `TRUE` the size is calculated by the application automatically.
Setting this property to false will have no effect. Instead use the interface com::sun::star::drawing::XShape
to set a concrete size (note com::sun::star::chart::XDiagram is derived from com::sun::star::drawing::XShape).
*/
diff --git a/offapi/com/sun/star/chart/Dim3DDiagram.idl b/offapi/com/sun/star/chart/Dim3DDiagram.idl
index 80a462a714a2..a6ef1ae06c3e 100644
--- a/offapi/com/sun/star/chart/Dim3DDiagram.idl
+++ b/offapi/com/sun/star/chart/Dim3DDiagram.idl
@@ -44,7 +44,7 @@ published service Dim3DDiagram
[optional] interface ::com::sun::star::chart::X3DDefaultSetter;
- /** If set to <TRUE/>, the chart becomes a three-dimensional
+ /** If set to `TRUE`, the chart becomes a three-dimensional
chart. Otherwise it is two-dimensional.
*/
[property] boolean Dim3D;
diff --git a/offapi/com/sun/star/chart/StackableDiagram.idl b/offapi/com/sun/star/chart/StackableDiagram.idl
index 8685734b7858..f940c1d8a38c 100644
--- a/offapi/com/sun/star/chart/StackableDiagram.idl
+++ b/offapi/com/sun/star/chart/StackableDiagram.idl
@@ -33,13 +33,13 @@ a helper service for stackable chart types (e.g., charts in
published service StackableDiagram
{
- /** If <TRUE/>, the series of the diagram are stacked and each
+ /** If `TRUE`, the series of the diagram are stacked and each
category sums up to 100%.
*/
[property] boolean Percent;
- /** If <TRUE/>, the series of the diagram are stacked.
+ /** If `TRUE`, the series of the diagram are stacked.
<p>If you have a stacked bar chart, you can easily determine
the sum of data in each category, by taking the top of the
diff --git a/offapi/com/sun/star/chart/StockDiagram.idl b/offapi/com/sun/star/chart/StockDiagram.idl
index 96fbbbf2fa63..c58601c7aca0 100644
--- a/offapi/com/sun/star/chart/StockDiagram.idl
+++ b/offapi/com/sun/star/chart/StockDiagram.idl
@@ -43,8 +43,8 @@
the following structures for different types:</p>
<p><strong>
- StockDiagram::Volume is <FALSE/><br>
- StockDiagram::UpDown is <FALSE/>
+ StockDiagram::Volume is `FALSE`<br>
+ StockDiagram::UpDown is `FALSE`
</strong>
<table border>
<tr><td>Low</td><td>High</td><td>Close</td></tr>
@@ -52,8 +52,8 @@
</table></p>
<p><strong>
- StockDiagram::Volume is <TRUE/><br>
- StockDiagram::UpDown is <FALSE/>
+ StockDiagram::Volume is `TRUE`<br>
+ StockDiagram::UpDown is `FALSE`
</strong>
<table border>
<tr><td><strong>Volume</strong></td><td>Low</td><td>High</td><td>Close</td></tr>
@@ -61,8 +61,8 @@
</table></p>
<p><strong>
- StockDiagram::Volume is <FALSE/><br>
- StockDiagram::UpDown is <TRUE/>
+ StockDiagram::Volume is `FALSE`<br>
+ StockDiagram::UpDown is `TRUE`
</strong>
<table border>
<tr><td><strong>Open</strong></td><td>Low</td><td>High</td><td>Close</td></tr>
@@ -70,8 +70,8 @@
</table></p>
<p><strong>
- StockDiagram::Volume is <TRUE/><br>
- StockDiagram::UpDown is <TRUE/>
+ StockDiagram::Volume is `TRUE`<br>
+ StockDiagram::UpDown is `TRUE`
</strong>
<table border>
<tr><td><strong>Volume</strong></td><td><strong>Open</strong></td><td>Low</td><td>High</td><td>Close</td></tr>
@@ -93,7 +93,7 @@ published service StockDiagram
<p>The values of the volume are represented as columns like
those of a BarDiagram.</p>
- <p>If this property is set to <TRUE/>, the values of the first
+ <p>If this property is set to `TRUE`, the values of the first
series of the chart data are interpreted as volume.</p>
*/
[property] boolean Volume;
@@ -106,14 +106,14 @@ published service StockDiagram
of the bar will be significant for positive or negative
differences between open and closed data.</p>
- <p>If this property is <FALSE/>, the values of the first
+ <p>If this property is `FALSE`, the values of the first
series (or second if StockDiagram::Volume is
- <TRUE/>) of the chart data are interpreted as the day's lowest
+ `TRUE`) of the chart data are interpreted as the day's lowest
value. The next series is interpreted as the day's highest
value, and the last series is interpreted as the closing
value.</p>
- <p>If this property is set to <TRUE/>, one additional series
+ <p>If this property is set to `TRUE`, one additional series
is needed with the opening value of the stocks. It is assumed
as the series before the series with the day's lowest
value.</p>
diff --git a/offapi/com/sun/star/chart/XChartData.idl b/offapi/com/sun/star/chart/XChartData.idl
index e6590a2cc8c4..0ce2e1002202 100644
--- a/offapi/com/sun/star/chart/XChartData.idl
+++ b/offapi/com/sun/star/chart/XChartData.idl
@@ -81,7 +81,7 @@ published interface XChartData: com::sun::star::uno::XInterface
result!</p>
@returns
- <TRUE/> if the number given is interpreted by the chart as
+ `TRUE` if the number given is interpreted by the chart as
a missing value.
@param nNumber
diff --git a/offapi/com/sun/star/chart/XStatisticDisplay.idl b/offapi/com/sun/star/chart/XStatisticDisplay.idl
index ae489d4c05ec..63dfe054ba30 100644
--- a/offapi/com/sun/star/chart/XStatisticDisplay.idl
+++ b/offapi/com/sun/star/chart/XStatisticDisplay.idl
@@ -41,7 +41,7 @@ published interface XStatisticDisplay: com::sun::star::uno::XInterface
/** @returns
the properties of the up bars of a stock chart which has
- StockDiagram::UpDown set to <TRUE/>.
+ StockDiagram::UpDown set to `TRUE`.
<p>The <em>UpBar</em> is the box that is drawn between the
open and close value of a stock, when the closing value is
@@ -54,7 +54,7 @@ published interface XStatisticDisplay: com::sun::star::uno::XInterface
/** @returns
the properties of the down bars of a stock chart which has
- StockDiagram::UpDown set to <TRUE/>.
+ StockDiagram::UpDown set to `TRUE`.
<p>The <em>DownBar</em> is the box that is drawn between the
open and close value of a stock, when the closing value is