Ticket T1279911
Visible to All Users

Problem with the Angular report viewer: when I apply a 0.6 zoom, the format dropdown becomes misaligned.

created 3 days ago

I have the following Angular code, but when I apply zoom on smaller resolutions, the report viewer dropdown becomes misaligned.

It seems to be caused by the dx-overlay-wrapper class.

Show previous comments (2)
Boris (DevExpress Support) 2 days ago

    Thank you for the reply.

    Unfortunately, the zoomScreemLittle and zoomScreemStandar variables are unknown to me so I'm not sure how to use them correctly. However, I've attached a simple Angular reporting example that demonstrates the correct zoom setting. Could you please update it to demonstrate the issue and share it with me?

    Best regards,
    Boris

    DL DL
    Diego Loaiza 2 days ago
      Code
      this.widthChange = this.breakpointObserver .observe([ '(max-width: 575px)', // XS '(min-width: 576px) and (max-width: 767px)', // Small '(min-width: 768px) and (max-width: 991px)', // Medium '(min-width: 992px) and (max-width: 1199px)', // Large '(min-width: 1200px) and (max-width: 1366px)', // Large '(min-width: 1367px)', // XL ]) .subscribe((state: BreakpointState) => { this.isXSmall = state.breakpoints['(max-width: 575px)']; this.isSmall = state.breakpoints['(min-width: 576px) and (max-width: 767px)']; this.isMedium = state.breakpoints['(min-width: 768px) and (max-width: 991px)']; this.isLarge = state.breakpoints['(min-width: 992px) and (max-width: 1199px)']; this.isStandar = state.breakpoints['(min-width: 1200px) and (max-width: 1366px)']; this.isXLarge = state.breakpoints['(min-width: 1367px)']; //actual this.currentWidth = window.innerWidth; this.currentHeight = window.innerHeight; this.zoomScreemLittle = this.isXSmall || this.isSmall; this.zoomScreemStandar = this.isStandar || this.isLarge; });
      DL DL
      Diego Loaiza a day ago

        please, help me

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.