When a user creates a new dashboard in the designer, you can automatically register data for it through the onCreateReport event.

Handle the create event.
designer = StiDesigner()

# Register data for every newly created dashboard
designer.onCreateReport += 'createReport'
designer.options.appearance.fullScreenMode = True

if designer.processRequest(request):
    return designer.getFrameworkResponse()

How it works. Every new dashboard begins with data already registered, so users can drop elements immediately without configuring a connection.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.