Make PanWidget feel like a native part of your application.
You can configure your brand settings globally in the Project Settings page. These settings apply to all widgets automatically.
You can control where each widget appears on your screen to avoid clutter. Go to Settings → Widgets to configure this.
The widget appears as a floating button in one of the corners (e.g., Bottom Right).
The widget is hidden by default. You trigger it programmatically using JavaScript.
You can override your dashboard settings by adding data attributes to the script tag:
<script src="..." data-project-id="..." data-type="feedback" data-mode="manual" data-position="bottom-left" ></script>
floating (default) or manual.bottom-right, bottom-left, top-right, or top-left.If you use Manual Mode, you can control the widgets using the global PanWidget object.
// Open the Review widget
window.PanWidget.open('review');
// Open the Feedback widget
window.PanWidget.open('feedback');
// Close any open widget
window.PanWidget.close();