Algosim documentation: Visual settings

Visual settings

This page lists all settings applicable to visual objects. To adjust a particular settings, use the AdjustVisual function and specify a reference to the object.

Table of contents

Diagrams

Objects

Common

Axes

Each axis has the following properties:

A vertical axis has the following additional properties:

If d is a reference to a diagram, then d.axes.x is a reference to its horizontal axis and d.axes.y a reference to its vertical axis.

Graphical user interface:

Image 1

Axis collections

An axis collection has no properties of its own, but contains subreferences to the individual axes. If d is a reference to a diagram, then d.axes is a reference to its collection of axes. Valid subreferences are x and y.

Graphical user interface:

Image 2

Grid line families

Each grid line family has the following properties:

If d is a reference to a diagram, then

are references to its grid lines families.

Graphical user interface:

Image 3

Grid line family collections

A grid line family collection has no properties of its own, but contains subreferences to the individual grid line families. If d is a reference to a diagram, then d.grids is a reference to its collection of grid line families. Valid subreferences are horizontal, horizontal2, vertical, vertical2, radial, radial2, and circular.

Graphical user interface:

Image 4

Views

Each diagram has a unique view subobject that determines the bounds of the scene in space coordinates.

The view subobject has the following properties:

Setting the center point parameter simply adjusts the xmin, xmax, ymin, and ymax properties so that the scene becomes centred at the specified point but retains its original width and height.

If d is a reference to a diagram, then d.view is a reference to its view subobject.

Graphical user interface:

Image 5

Diagrams

A diagram has no properties of its own, but, as discussed above, contains subobjects with configurable properties (view, axes, grid lines).

Its graphical user interface combines the GUIs of its subobjects:

Image 6

The screenshot above is from an empty diagram. If a diagram contains objects (charts, plots), they will also be listed to the left.

Image 7

The GUI also contains a special page named “Objects” that gives an overview of the objects the diagram contains, lets you toggle the visibility of each object, remove objects, reorder them, and assign metadata properties to them:

Image 8

If d is a reference to a diagram, then d.objects is a reference to its object manager.

Bar charts

A bar chart has the following properties:

If a label position is in [0, 1], it is treated as a fraction of the bar height. If it is greater (less) than 1, it is treated as a fixed number of pixels above (below) the bar.

In the three examples below, the label positions are −8, 8, and 0.5, respectively:

Image 9

Graphical user interface:

Image 10

If b is a reference to a bar chart, then d.legend is a reference to its legend. Similarly, b.Cat is a reference to the category that initially was labelled “Cat”.

Pie charts

A pie chart has the following properties:

x and y are the coordinates of the centre point of the pie chart. position is the same thing but represented as a single vector.

If a label position is in [0, 1], it is treated as a fraction of the radius. If it is greater than 1, it is treated as a fixed number of pixels from the slice (radially).

Graphical user interface:

Image 11

If p is a reference to a pie chart, then p.legend is a reference to its legend. Similarly, p.Cat is a reference to the category that initially was labelled “Cat”.

Legends

If r is a reference to either a bar chart or a pie chart, then r.legend is a reference to its legend. This has the following properties:

Graphical user interface:

Image 12

Categories

If r is a reference to either a bar chart or a pie chart, then r.Cat is a reference to the category initially labelled “Cat”. This has the following properties:

Graphical user interface:

Image 13

The category settings GUI can also be accessed from the parent category chart’s settings:

Image 14

Histograms

A histogram has the following properties:

Notice that the bin width and start at parameters affect much more than the mere aesthetics of the chart.

Graphical user interface:

Image 15

XY plots

The functions ScatterPlot, LinePlot / LineChart, AreaChart, and plot all produce XY plots, albeit with different initial settings.

An XY plot has the following properties:

Initially, out of the three booleans, a scatter plot has only points set to true. Similarly, a line (area) plot has only lines (area) set to true.

Graphical user interface:

Image 16

Vector fields

A vector field has the following properties:

The arrows are always drawn with the direction of the vector field. If use magnitude is true, their lengths are proportional to the local magnitude of the field; otherwise, they are all drawn with the same size. arrow scale adjusts the size of all arrows by this same factor.

Graphical user interface:

Image 17

Heat maps

A heat map has the following properties:

The “line” refers to the rectangular outer border of the object.

Text boxes

A text box has the following properties:

Graphical user interface:

Image 18

Image 19

Image 20

Line segments

A line segment has the following properties:

In addition, if L is a reference to a line segment, then L.start and L.end are references to its line ending objects.

Graphical user interface:

Image 21

Line endings

A line ending has the following properties:

If L is a reference to a line segment, then L.start and L.end are references to its line ending objects.

Rectangles

A rectangle has the following properties:

Circles and disks

A circle or disk has the following properties:

Mathematically, the difference between a circle and a disk is that a circle is a curve while a disk is a two-dimensional region having a circle as its boundary. The difference between the circle and the disk function is that the disk function returns an object with fill opacity 100%, while the circle function returns the same kind of object but with a fill opacity of 0%.

Polygons

A polygon has the following properties:

Pixmaps

An embedded pixmap has the following properties:

Metadata

Every visual object has a title and a description. These may be set using the following properties:

These properties are used, for instance, when diagrams are exported as SVG images.

Window size

Every visual object has two special properties, window width and window height, that, when set, alter the size of the window currently containing the object, assuming the diagram containing the object is not docked in the main IDE.

If the diagram is docked in the main IDE, it is first detached and then its new, floating, window is resized.

You can also specify the size of a floating diagram window using the Window size dialog.

Finally, every visual object has the auto normalize property. When set to true, the diagram containing it will be set to automatic normalization, meaning that the logical view will adapt according to the window size so that one unit in the horizontal direction will correspond to the same physical on-screen distance as one unit in the vertical direction. This normalization is automatically reapplied when the window is resized.