BindingProps
The BindingProps type describes the props that bind a LineChart component or BarChart component to Cell values in TinyBase data. An x Cell value can be a finite number, string, or boolean. A y Cell value must be a finite number.
{
xCellId: Id;
yCellId: Id;
sortCellId?: Id;
descending?: boolean;
offset?: number;
limit?: number;
}| Type | Description | |
|---|---|---|
xCellId | Id | The |
yCellId | Id | The |
sortCellId? | Id | |
descending? | boolean | Whether the charted rows should be sorted in descending order. |
offset? | number | The number of sorted rows to skip before charting. |
limit? | number | The maximum number of sorted rows to chart. |
Since
v8.5.0