Themeing
Out of the box, the data-table is not styled. This gives you maximum flexibility.
There is a separate material theme distributed with data-table. In order to use it, you need to include that in your application themes/material.css
and add the CSS class material
to your data-table.
This is a simple way to apply the style of the demo.
You can just add above to your scss
file and then specify the class of your ngx-datatable to <ngx-datatable class="material">
CSS Classes
ngx-datatable
: Master Table classfixed-header
: The header is fixed on the table
datatable-header
: Header row classdatatable-header-cell
: Header cell classresizeable
: Cell resizeable classsortable
: Cell drag/drop sortable classlongpress
: Cell long-press activateddragging
: Cell dragging activatedsort-active
: Sort active on columnsort-asc
: Sort active on column with ascending appliedsort-desc
: Sort active on column with descending applied
datatable-header-cell-label
: Header cell text labeldraggable
: Header cell draggable class
datatable-body-row
: Body row classdatatable-row-even
: Odd row classdatatable-row-odd
: Even row classdatatable-body-cell
: Body cell classsort-active
: Sort active on columnsort-asc
: Sort active on column with ascending appliedsort-desc
: Sort active on column with descending applied
Last updated