Variable DataPatternsNewConst

DataPatternsNew: {
    ProgressiveX: "ProgressiveX";
    ProgressiveY: "ProgressiveY";
    RegressiveX: "RegressiveX";
    RegressiveY: "RegressiveY";
} = ...

Object with all options of data patterns supported by DataSetXY and PointLineAreaSeries.

Data patterns are used to select specific types of data sets which allow using powerful performance optimizations and behavioral improvements. For example, the most common being 'ProgressiveX' which means that every sample has a larger X coordinate than the previous one.

Supported values are:

  • 'ProgressiveX'
  • 'ProgressiveY'
  • 'RegressiveX'
  • 'RegressiveY'

See DataSetXY.dataPattern for more details.

IMPORTANT: Currently DataSetXY is in public beta state. The most hefty limitation is that only ProgressiveX and null data patterns are supported currently!

Type declaration

  • ProgressiveX: "ProgressiveX"
  • ProgressiveY: "ProgressiveY"
  • RegressiveX: "RegressiveX"
  • RegressiveY: "RegressiveY"