_initRows()

in src/dashboard.ts [75:84]


    _initRows(opts: DashboardOptions) {
        this.rows = [];
        this.state.rows = [];

        if (opts.rows) {
            opts.rows.forEach((row) => {
                this.addRow(row);
            });
        }
    }