The best of Creately, designed for your desktop.
(this.xDiagram.ContainerGenerator as GenericContainerGenerator).ClearCache; Disable the segmentation service: It is reponsible for continually dividing the RadDiagram into segments in order to more easily retrieve 'nearby' shapes for certain operations. Interface XDiagram: Methods' Summary: getWall: returns the property set that determines the visual appearance of the wall. GetFloor: returns the property set that determines the visual appearance of the floor if any. GetLegend: returns the legend, which may represent data series and other information about a diagram in a separate box. xDiagram application could help you make nice diagram graphic documents or UML documents quickly by keeping lines connected to shapes even when they're moved. Functions of the application: + Support VISIO formats: VSDX, VSDM (Microsoft Visio Format) + IMPORT old VISIO formats: VSD, VSS (Import o.
With the Creately App for Windows, Creately works faster and smoother.
- Start the app and continue working from where you left off in a single action.
- All your docs are cached locally as you open them and make changes. Get to your content faster.
- Locally available shapes mean even faster shape search as you draw.
- Copy/paste or drag drop images from other desktop apps.
Worry-free collaboration, syncing and updates.
XDiagram 3 could help you make nice diagram graphic documents quickly by keeping lines connected to shapes even when they’re moved. The application provides powerful graphic tools for designers, developers to draw UML activity diagram. The core of any case – the equivalent of the “Assessment” of conventional medicine’s “SOAP note” – is a well-organized Totality; which is both More, and Less, than all of the symptoms of a case. There are many ways we might organize the symptoms of a case in order to discern a succinct Totality to Working with the Boenninghausen X-diagram Read More ».
Your content is backed up on Creately’s cloud and also allows for seamless collaboration with others.
- Share work done on your desktop app with others using Creately Cloud (or desktop)
- Latest updates to Creately are applied to the Desktop app between app restarts
- Access your documents from any web browser you can sign into.
- Common Parts of all Chart Types
Diagram
The diagram object is an important object of a chart document. The diagram represents the visualization of the underlying data. The diagram object is a graphic object group that lies on the same level as the titles and the legend. From the diagram, data rows and data points are obtain that are also graphic objects that represent the respective data. Several properties can be set at a diagram to influence its appearance. Note that the term data series is used instead of data rows.
Some diagrams support the service com.sun.star.chart.Dim3DDiagram that contains the property Dim3D
. If this is set to true, you get a three-dimensional view of the chart, which in Apache OpenOffice is usually rendered in OpenGL. In 3-D charts, you can access the z-axis, which is not available in 2-D.
The service com.sun.star.chart.StackableDiagram offers the properties Percent and Stacked. With these properties, accumulated values can be stacked for viewing. When setting Percent
to true
, all slices through the series are summed up to 100 percent, so that for an AreaDiagram
the whole diagram space would be filled with the series. Note that setting the Percent
property also sets the Stacked
property, because Percent
is an addition to Stacked
.
There is a third service that extends a base diagram type for displaying statistical elements called com.sun.star.chart.ChartStatistics. With this service, error indicators or a mean value line are added. The mean value line represents the mean of all values of a series. The regression curve is only available for the XYDiagram
, because a numeric x-axis, is required.
The illustration above shows that there are eight base types of diagrams. The three services, StackableDiagram
, Dim3DDiagram
and ChartStatistics
are also supported for several diagram types and allows extensions of the base types as discussed. For instance, a three-dimensional pie chart can be created, because the com.sun.star.chart.PieDiagram service points to the com.sun.star.chart.Dim3DDiagram service.
The services com.sun.star.chart.AreaDiagram, com.sun.star.chart.LineDiagram, and com.sun.star.chart.BarDiagram support all three feature services.
Axis
All charts can have one or more axis, except for pie charts. A typical two-dimensional chart has two axis, an x- and y-axis. Secondary x- or y-axis can be added to have up to four axis. In a three-dimensional chart, there are typically three axis, x-, y- and z-axis. There are no secondary axis in 3-dimensional charts.
An axis combines two types of properties:
- Scaling properties that affect other objects in the chart. A minimum and maximum values are set that spans the visible area for the displayed data. A step value can also be set that determines the distance between two tick-marks, and the distance between two grid-lines if grids are switched on for the corresponding axis.
- Graphical properties that influence the visual impression. These are character properties (see com.sun.star.style.CharacterProperties) affecting the labels and line properties (see com.sun.star.drawing.LineProperties) that are applied to the axis line and the tick-marks.
Different diagram types support a different number of axis. In the above illustration, a com.sun.star.chart.XYDiagram, also known as a scatter diagram, is shown. The scatter diagram supports x- and y-axis, but not a z-axis as there is no 3-dimensional mode. The com.sun.star.chart.PieDiagram supports no axis at all. The com.sun.star.chart.BarDiagram supports all kinds of axis. Note that the z-Axis is only supported in a three-dimensional chart. Note that there is a com.sun.star.chart.ChartTwoAxisXSupplier that includes the com.sun.star.chart.ChartAxisXSupplier and is supported by all diagrams in OpenOffice.org required to support the service ChartAxisXSupplier
.
The following example shows how to obtain an axis and how to change the number format.
Human Anatomy Diagram Organs
Data Series and Data Points
The objects that visualize the actual data are data series. The API calls them data rows that are not rows in a two-dimensional spreadsheet table, but as sets of data, because the data for a data row can reside in a column of a spreadsheet table.
The data rows contain data points. The following two methods at the com.sun.star.chart.XDiagram interface allow changes to the properties of a whole series or single data point:
The index provided in these methods is 0-based, that is, 0 is the first series. In XYDiagrams
, the first series has an index 1, because the first array of values contains the x-values of the diagram that is not visualized. This behavior exists for historical reasons.
In a spreadsheet context, the indexes for getDataPointProperties()
are called nCol
and nRow
and are misleading. The nRow
parameter gives the data row, that is, the series index. The nCol
gives the index of the data point inside the series, regardless if the series is taken from rows or columns in the underlying table. To get the sixth point of the third series, write getDataPointProperties(5, 2)
.
Data rows and data points have com.sun.star.drawing.LineProperties and com.sun.star.drawing.FillProperties. They also support com.sun.star.style.CharacterProperties for text descriptions that can be displayed next to data points.
Diagram Of Digestive System
Properties can be set for symbols and the type of descriptive text desired. With the SymbolType
property, one of several predefined symbols can be set. With SymbolBitmapURL
, a URL that points to a graphic in a format known by Apache OpenOffice can be set that is then used as a symbol in a com.sun.star.chart.LineDiagram or com.sun.star.chart.XYDiagram.
The following example demonstrates how to set properties of a data point. Before implementing this example, create a chart document and diagram of the type XYDiagram
.
Diagramming Software
Content on this page is licensed under the Public Documentation License (PDL). |