TinyBase logoTinyBase β

ChartTableSourceProps

The ChartTableSourceProps type describes the props that bind a chart to a Table in a Store.

{
  tableId: Id;
  store?: StoreOrStoreId;
  queryId?: never;
  queries?: never;
}
TypeDescription
tableIdId

The Id of the Table in the Store to chart.

store?StoreOrStoreId

The Store to chart, or the Id of a Store that is registered with the Provider component.

queryId?never

This prop is not used when binding a chart to a Table.

queries?never

This prop is not used when binding a chart to a Table.

Since

v8.5.0