Web Components for Insights Hub and Industrial IoT - Time Series Table - Developer Documentation
Skip to content

Web Components for Insights Hub and Industrial IoT
Time Series Table

The Time Series Table displays data provided by the IoT Time Series API in a table view.

The table provides possibilities to sort or filter for specific variables or values. A maximum of the last 256 time series objects are requested from the API for the provided time range.

Example

Time Series Table

Interface

Models

TimeZoneDateRange
interface TimeZoneDateRange {
    from: Date;
    to: Date;
    isAllDay: boolean;
    timeZone: TimeZone;
}
IDataModel
interface IDataModel {
  // forces reload of data, e.g. re-loading the table
  refresh(): void;
}
IViewModel
interface IViewModel {
  refresh(): void;
}
TimeZone
enum TimeZone {
    Local = 'Local',
    UTC = 'UTC',
}

Remarks

  • For performance reasons, it is recommended to limit the number of variables displayed in the Time Series Table to 10.

Roles

  • mdsp:core:iot.timUser (IoT TimeSeries API is used)

Snippets

Using the table with filter and paging controls

<mdsp-time-series-table pager-mode="Advanced2" filterable="true"></mdsp-time-series-table>
Time Series Table


Except where otherwise noted, content on this site is licensed under the Development License Agreement.


Last update: April 13, 2023