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