Online documentation, manuals and tutorials
< All Topics
Print

LineChart (Dashboard)

Description

Displays a Line chart consisting of the following parts:

  • Title
  • X Axis
  • Y axis
  • A legend
  • Grid
  • One or more lines

Alt text

At the beginning of the chart there is not a single point on the lines. In order to add a point, it is necessary to pass the data through value input. One point is added for each applied data on that input. The X and Y values of that point on all lines should then be calculated from the received data. For example the received data can be a structure that has an X value and a Y value for each line.

Properties

Specific

X value

EXPRESSION (any)

Defines the value on the X-axis for the added point. It can be set to the current time with Date.now() or some other value, but care must be taken to increase the value with each newly added point.

Lines

Array

Defines one or more lines on the Y-axis. The following must be specified for each line:

  • Label – The name of the line that is displayed in the Legend.
  • Color – Color of the line.
  • Value – The value on the Y axis for the added point.

Title

String

Name of the chart.

Display mode bar

Enum

When the mode bar with buttons will be displayed in the top right corner of the chart, possible options are: Hover, Always and Never.

Show legend

Boolean

It should be set if we want to display the legend.

Show xaxis

Boolean

It should be set if we want to display the X-axis.

Show yaxis

Boolean

It should be set if we want to display the Y-axis.

Show grid

Boolean

It should be set if we want to display the grid.

Show zero lines

Boolean

It should be set if we want to display zero lines.

X axis range option

Enum

Here we have two options:

  • Floating – X-axis range will be automatically selected based on the X value at all points.
  • Fixed – X-axis range is set via X axis range from and X axis range to items.

X axis range from

EXPRESSION (double)

If Fixed is selected for X axis range option, then the lower limit of the X-axis range is set with this item.

X axis range to

EXPRESSION (double)

If Fixed is selected for X axis range option, then the upper limit of the X-axis range is set with this item.

Y axis range option

Enum

Here we have two options:

  • Floating – Y-axis range will be automatically selected based on the Y value at all points.
  • Fixed – Y-axis range is set via Y axis range from and Y axis range to items.

Y axis range from

EXPRESSION (double)

If Fixed is selected for Y axis range option, then the lower limit of the Y-axis range is set with this item.

Y axis range to

EXPRESSION (double)

If Fixed is selected for Y axis range option, then the upper limit of the Y-axis range is set with this item.

Max points

EXPRESSION (integer)

The maximum number of points that will be displayed.

Margin

Object

Manually selected margin values between the Widget borders and the chart itself within the Widget. It is necessary to leave an empty space for Title (displayed above the chart, so the appropriate Top margin should be selected), X-axis (displayed below the chart, Bottom margin), Y-axis (displayed to the left of the chart, Left margin) and Legend (displayed to the right of the chart, Right margin).

Marker

EXPRESSION (float)

At this position, a vertical line will be displayed inside the chart using Marker style.

Visible

EXPRESSION (boolean)

If the calculated expression is true then the Widget is visible, and if it is false then the Widget is hidden. It can be left blank, in which case the Widget is always visible.

Inputs

reset

DATA(any) | OPTIONAL

If we want to erase all the points on the chart, it is necessary to send a signal to this input.

value

DATA(any) | MANDATORY

The input to which the value of the point that we want to add to the chart is sent. When the maximum number of points, which is set through the Max points item, is reached, then the oldest added point will be deleted.

Examples

  • Dashboard Widgets Demo
Page content