Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface ISeriesConfig<IndexT, ValueT>

Used to configure a series.

Type parameters

  • IndexT

  • ValueT

Hierarchy

  • ISeriesConfig

Index

Properties

Properties

Optional baked

baked: undefined | false | true

Set to true when the series has been baked into memory and does not need to be lazily evaluated.

Optional index

index: Iterator<IndexT> | Iterable<IndexT>

The index for the serires. If omitted the index will default to a 0-based index.

Optional pairs

pairs: Iterator<[IndexT, ValueT]> | Iterable<[IndexT, ValueT]>

Array or iterable of index,value pairs to put in the series. If index and values are not separately specified they can be extracted from the pairs.

Optional values

values: Iterator<ValueT> | Iterable<ValueT>

Values to put in the dataframe. This should be array or iterable of JavaScript values.

Generated using TypeDoc