service LineDiagram in module com::sun::star::chart::

(Global Index)

Syntax

service LineDiagram;

Description

specifies line, spline and symbol diagrams.

Included Services

com::sun::star::chart::Diagram

Description

the base service for the diagram of the chart document.


com::sun::star::chart::ChartStatistics

Description

offers statistical properties for the data in the chart. It is available for a single data row and for the whole diagram.


com::sun::star::chart::ChartAxisXSupplier

Description

has to be supported by charts providing the cpabilities of a horizontal axis, i.e., an x -axis.


com::sun::star::chart::ChartTwoAxisYSupplier

Description

a helper service for chart documents which supply primary and secondary y-axes.


com::sun::star::chart::ChartAxisZSupplier

Description

A helper service for chart documents which supply a z-axis.


com::sun::star::chart::Dim3DDiagram

Description

is a service for diagrams that support the capability to render themselves as three-dimensional diagrams as well as two-dimensional ones.


com::sun::star::chart::StackableDiagram

Property Summary

SymbolType determines which type of symbols are displayed.

SymbolSize specifies the size of symbols in 1/100th of a millimeter.

SymbolBitmapURL Set this property to any valid URL that points to a graphic file. This graphic is then used as symbol for all series.

Lines determines if the chart type has lines connecting the data points or contains just symbols.

SplineType determines if the chart is a spline-chart type and specifies the type of splines.

SplineOrder specifies the power of the polynomials used for spline calculation This property is only valid for B-splines

SplineResolution determines the number of sampling points of a spline

Property Details



SymbolType

Syntax

long SymbolType;

Description

determines which type of symbols are displayed.

In this interface, only the two values ChartSymbolType::NONE and ChartSymbolType::AUTO are supported. Later versions may support the selection of the symbols shape.

If you set this property to ChartSymbolType::AUTO , you can change the symbol shape for objects supporting the service ChartDataPointProperties or ChartDataRowProperties .

See also

ChartDataPointProperties

See also

ChartDataRowProperties

SymbolSize [ O P T I O N A L ]

Syntax

com::sun::star::awt::Size SymbolSize;

Description

specifies the size of symbols in 1/100th of a millimeter.


SymbolBitmapURL [ O P T I O N A L ]

[ DEPRECATED ]

Syntax

string SymbolBitmapURL;

Description

Set this property to any valid URL that points to a graphic file. This graphic is then used as symbol for all series.

When you query this value you get an internal URL of the embedded graphic.

See also

ChartSymbolType

Lines

Syntax

boolean Lines;

Description

determines if the chart type has lines connecting the data points or contains just symbols.


SplineType

Syntax

long SplineType;

Description

determines if the chart is a spline-chart type and specifies the type of splines.

You can set the following values:
0 lines are used instead of splines
1 use cubic splines
2 use B-splines


SplineOrder [ O P T I O N A L ]

Syntax

long SplineOrder;

Description

specifies the power of the polynomials used for spline calculation This property is only valid for B-splines


SplineResolution [ O P T I O N A L ]

Syntax

long SplineResolution;

Description

determines the number of sampling points of a spline

Top of Page