Cookes and Terms and Conditions

I accept This site stores small pieces of text information called cookies on your computer in order to deliver better content and for statistical purposes. You can disable the usage of cookies by changing the settings of your browser. By using this website without changing your browser settings you are granting permission to store that information on your device.

Any and all use of this Website is subject to our terms and conditions

Initial State

Referring to an instance of a dash application, uniquely identified by a slug, will use the persisted representation of that app along with its initial state.

Each time this page is reloaded, the application will revert to its stored intial state. This initial state is persisted in a standard Django model.

It is also possible to specify intial arguments in the template. These override the values specifed in the code defining the app, and also take priority over any stored state.

{% load plotly_dash %}

{% plotly_app slug="simpleexample-1" ratio=0.1 %}

{% plotly_app name="simpleexample-1" initial_arguments='{"dropdown-color": {"value": "green"}}' %}