Lines Matching refs:table
36 private table: LitTable | null | undefined; property in Top20ThreadCpuUsage
48 private map: Map<string, { chart: LitChartColumn; table: LitTable }> | undefined;
93 this.table = this.shadowRoot!.querySelector<LitTable>('#tb-thread-usage');
101 this.map = new Map<string, { chart: LitChartColumn; table: LitTable }>();
102 this.map.set('total', { chart: this.chartTotal!, table: this.table! });
103 this.map.set('small', { chart: this.chart2!, table: this.tableSmall! });
104 this.map.set('mid', { chart: this.chart3!, table: this.tableMid! });
105 this.map.set('big', { chart: this.chart4!, table: this.tableBig! });
131 let tab = this.map!.get(key)!.table;
168 sortByColumn(detail: any, table: LitTable | null | undefined, data: Array<any>) {
207 table!.recycleDataSource = data;
213 this.map!.get(key)!.table.reMeauseHeight();
219 let table = this.map!.get(key)!.table;
220 table.innerHTML = '';
228 table.innerHTML = columns;
246 this.map!.get(key)!.table.recycleDataSource = [];
292 …private assignmentData(key: string, source: any[], obj: { chart: LitChartColumn; table: LitTable }…
303 this.sortByColumn(this.sort[key], obj.table, source);
305 obj.table.recycleDataSource = source;
309 …private setChartConfig(obj: { chart: LitChartColumn; table: LitTable }, key: string, source: any[]…
359 …private setHover(source: any[], no: number, obj: { chart: LitChartColumn; table: LitTable }): void…
363 obj.table!.setCurrentHover(data);
365 obj.table!.mouseOut();