How would I move the filter popups vertically and/or horizontally.
Somewhere I must have overridden a default value. See screen shot.
In this case, the filter pops up higher than the pivot table itself.
How can I bring that lower, at least where the top is aligned to the top of the pivot?
Thanks
|
memberEditorOpen(args) {
if (this.pivotObj.pivotCommon.filterDialog.dialogPopUp) {
this.pivotObj.pivotCommon.filterDialog.dialogPopUp.position.Y = this.pivotObj.element.offsetTop
}
} |
Thank you for your help.
I can't get that to fire, even in StackBlitz.
My code:
<ejs-pivotview #pivotviewTask1 id='pivotviewTask1'
[dataSourceSettings]=dataSourceSettingsTask1 width='1000' height='600' [showGroupingBar]=true
[gridSettings]='gridSettings' showFieldList='true'
[allowExcelExport]='true' (memberEditorOpen)='memberEditorOpenTask($event)'>
</ejs-pivotview>
import { PivotViewComponent } from '@syncfusion/ej2-angular-pivotview';
@ViewChild('pivotviewTask1')
public pivotviewTask1: PivotViewComponent;
memberEditorOpenTask(args) {
console.log('fired');
this.pivotviewTask1.pivotCommon.filterDialog.dialogPopUp.position.Y = 800;
}
And even in the stackblitz the title of the dialog is cutting off. (See also attached screenshot)
thanks