apex-grid
    Preparing search index...

    Function setup

    • One-call convenience: registers <apex-grid> and adopts a default host stylesheet so the virtualizer has a bounded height. The grid is styled out-of-the-box via --ag-* CSS custom properties — no theme import needed.

      Parameters

      • options: ApexGridSetupOptions = {}

      Returns void

      This is an additive alternative to the manual setup (import 'apex-grid/define' + host CSS). Idempotent — safe to call more than once; host styles are adopted only on the first call.

      Customize the look by overriding --ag-* CSS variables (see the README). The deprecated ApexGridSetupOptions.theme option only forwards to igniteui-webcomponents and does not change the grid's appearance.

      import { setup } from 'apex-grid';
      setup();
      setup({ hostStyles: false });