# Function toPivotTableWidgetProps

toPivotTableWidgetProps(widgetModel): PivotTableWidgetProps

Translates a WidgetModel to the props for rendering a pivot table widget.

# Parameters

Parameter Type
widgetModel WidgetModel

# Returns

PivotTableWidgetProps

# Example

<csdk-pivot-table-widget
 *ngIf="pivotWidgetProps"
 [dataSet]="pivotWidgetProps.dataSet"
 [dataOptions]="pivotWidgetProps.dataOptions"
 [filters]="pivotWidgetProps.filters"
 [styleOptions]="pivotWidgetProps.styleOptions"
/>
import { Component } from '@angular/core';
import {
 type PivotTableWidgetProps
 WidgetService,
 widgetModelTranslator,
} from '@sisense/sdk-ui-angular';

@Component({
 selector: 'app-example',
 templateUrl: './example.component.html',
 styleUrls: ['./example.component.scss'],
})
export class ExampleComponent {
 pivotWidgetProps: PivotTableWidgetProps | null = null;

 constructor(private widgetService: WidgetService) {}

 async ngOnInit(): Promise<void> {
   const widgetModel = await widgetService.getWidgetModel({
     dashboardOid: 'your-dashboard-oid',
     widgetOid: 'your-widget-oid'
   });
   this.pivotWidgetProps = widgetModelTranslator.toPivotTableWidgetProps(widgetModel);
 }
}

Note: this method is not supported for chart or table widgets. Use toChartWidgetProps instead for getting props for the ChartWidgetComponent.