Row
Represents a row. Allows for quick property access like "row.height".
Indexable
[columnName
: string
]: any
Constructors
new Row()
new Row(
table
,idx
):Row
Creates a Row from the specified DataFrame and row index.
Parameters
Parameter | Type | Description |
---|---|---|
table | DataFrame | |
idx | number |
Returns
Source
Properties
Property | Modifier | Type |
---|---|---|
idx | readonly | number |
table | public | DataFrame |
Accessors
cells
get
cells():Iterable
<Cell
>
Returns
Iterable
<Cell
>
Source
Methods
get()
get(
columnName
):any
Returns this row's value for the specified column
Parameters
Parameter | Type | Description |
---|---|---|
columnName | string |
Returns
any
Source
toDart()
toDart():
any
Returns
any
Source
toMap()
toMap():
object
Returns a JS object with column names as keys and values as values.
Returns
object