(this page was created automatically. In case of formatting issues, please visit the official Wiki Page)

Line chart

The Dynamic Line Chart component displays data as lines on a chart with customizable series, axes, and visual properties. It's designed to visualize trends over time or relationships between data points, with support for multiple data series, custom styling, and various data sources.

Properties

Visual Properties

Data Source Properties

Event Actions

Authorization Properties

Visibility Properties

General Properties

Testing Hooks

Data source model

Line-Chart requires array of data with at least two properties for argumentField (values used for X-axis) and seriesField (values used for Y-axis). Array can be nested, to point nested array dataPathExpression have to be set.

Data example Expand source

[ { createdOn: '2019-12-01T23:00:00.000Z', point1: 4, //x-axis point2: 2, //y-axis }, { createdOn: '2019-12-02T23:00:00.000Z', point1: 4, point2: 10, }, { createdOn: '2019-12-03T23:00:00.000Z', point1: 5, point2: 2, } ]