I have a QuickSight dashboard with KPI visuals that display both an actual value and a comparison percentage. The dashboard works correctly on one laptop, but on another laptop using the same Chrome browser version and same user account, only the actual value shows - the comparison percentage is completely missing.
Technical Details
Working Browser (Laptop 1):
html
<div data-automation-id="kpi-primary-group" role="group" aria-label="actual value">
<div data-automation-id="kpi-actual-value" class="kpi-icon flex-horizontal center-center" role="group">
<span role="presentation" title="4,465" class="ellipsis">4,465</span>
</div>
</div>
<div data-automation-id="kpi-comparison" class="kpi-icon flex-horizontal center-center flex-ellipsis" role="group" aria-label="comparison">
<span role="presentation" title="81.46%" class="ellipsis">81.46%</span>
</div>
Not Working Browser (Laptop 2):
html
<div data-automation-id="kpi-primary-group" role="group" aria-label="actual value">
<div data-automation-id="kpi-actual-value" class="kpi-icon flex-horizontal center-center" role="group">
<span role="presentation" title="4,465" class="ellipsis">4,465</span>
</div>
</div>
<!-- kpi-comparison div is completely missing -->
Environment Details
- Browser: Chrome (same version on both laptops)
- User Account: Identical QuickSight user
- Dashboard: Same dashboard accessed simultaneously
- Network: Same corporate network
Troubleshooting Already Attempted
Cleared browser cache and cookies
Tried incognito/private mode
Hard refresh (Ctrl+F5)
Verified same user account and permissions
Logged out and back in
Checked browser zoom levels are identical
Questions
- Has anyone experienced KPI comparison elements not rendering on certain browsers while working fine on others?
- Are there any known browser-specific compatibility issues with QuickSight KPI visuals?
- Could there be system-level settings or corporate policies that might affect how QuickSight renders certain dashboard elements?
- What diagnostic steps should I take to identify why the
kpi-comparison
div is not being generated at all on one browser?
Additional Context
The issue appears to be server-side rendering related, as the entire comparison div element is missing from the DOM (not just hidden via CSS). This suggests QuickSight’s backend is making a decision not to include this content for one browser environment.
Any insights or similar experiences would be greatly appreciated!
Tags: kpi dashboard #BrowserCompatibility #Chrome #Rendering