lodviz_components 0.3.0

Components for data visualization using lodviz_core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Interactive BI-style data table components.
//!
//! Only [`data_table::DataTable`] is public API.

/// Filter popover (text / range / category)
pub(super) mod column_filter;
/// Column-specific filter popover (embedded in header)
pub(super) mod column_filter_popover;
/// Column header row + toolbar
pub(super) mod table_header;

/// Main data table component (includes theme support and pagination footer)
pub mod data_table;