# Function toTableProps
toTableProps(
widgetModel
):TableProps
Translates a WidgetModel to the props for rendering a table.
# Parameters
Parameter | Type |
---|---|
widgetModel | WidgetModel |
# Returns
# Example
<csdk-table
*ngIf="tableProps"
[dataSet]="tableProps.dataSet"
[dataOptions]="tableProps.dataOptions"
[filters]="tableProps.filters"
[styleOptions]="tableProps.styleOptions"
/>
import { Component } from '@angular/core';
import {
type TableProps
WidgetService,
widgetModelTranslator,
} from '@sisense/sdk-ui-angular';
@Component({
selector: 'app-example',
templateUrl: './example.component.html',
styleUrls: ['./example.component.scss'],
})
export class ExampleComponent {
tableProps: TableProps | null = null;
constructor(private widgetService: WidgetService) {}
async ngOnInit(): Promise<void> {
const widgetModel = await widgetService.getWidgetModel({
dashboardOid: 'your-dashboard-oid',
widgetOid: 'your-widget-oid'
});
this.tableProps = widgetModelTranslator.toTableProps(widgetModel);
}
}
Note: this method is not supported for chart and pivot widgets. Use toChartProps instead for getting props for the ChartComponent. Use toPivotTableProps instead for getting props for the PivotTableComponent.