Dashboards.jl API

Dashboards.DashboardsModule
module Dashboards

Julia backend for Plotly Dash

Examples

import HTTP
using Dashboards
app = Dash("Test", external_stylesheets=["https://codepen.io/chriddyp/pen/bWLwgP.css"]) do
    html_div() do
        dcc_input(id="graphTitle", value="Let's Dance!", type = "text"),
        html_div(id="outputID"),            
        dcc_graph(id="graph",
            figure = (
                data = [(x = [1,2,3], y = [3,2,8], type="bar")],
                layout = Dict(:title => "Graph")
            )
        )
                
    end
end
callback!(app, callid"{graphTitle.type} graphTitle.value => outputID.children") do type, value
    "You've entered: '$(value)' into a '$(type)' input control"
end
callback!(app, callid"graphTitle.value => graph.figure") do value
    (
        data = [
            (x = [1,2,3], y = abs.(randn(3)), type="bar"),
            (x = [1,2,3], y = abs.(randn(3)), type="scatter", mode = "lines+markers", line = (width = 4,))                
        ],
        layout = (title = value,)
    )
end
handle = make_handler(app, debug = true)
HTTP.serve(handle, HTTP.Sockets.localhost, 8080)

Available components

Component package: dcc:

dcc_checklist, dcc_confirmdialog, dcc_confirmdialogprovider, dcc_datepickerrange, dcc_datepickersingle, dcc_dropdown, dcc_graph, dcc_input, dcc_interval, dcc_link, dcc_loading, dcc_location, dcc_logoutbutton, dcc_markdown, dcc_radioitems, dcc_rangeslider, dcc_slider, dcc_store, dcc_tab, dcc_tabs, dcc_textarea, dcc_upload

Component package: html:

html_a, html_abbr, html_acronym, html_address, html_area, html_article, html_aside, html_audio, html_b, html_base, html_basefont, html_bdi, html_bdo, html_big, html_blink, html_blockquote, html_br, html_button, html_canvas, html_caption, html_center, html_cite, html_code, html_col, html_colgroup, html_command, html_content, html_data, html_datalist, html_dd, html_del, html_details, html_dfn, html_dialog, html_div, html_dl, html_dt, html_element, html_em, html_embed, html_fieldset, html_figcaption, html_figure, html_font, html_footer, html_form, html_frame, html_frameset, html_h1, html_h2, html_h3, html_h4, html_h5, html_h6, html_header, html_hgroup, html_hr, html_i, html_iframe, html_img, html_ins, html_isindex, html_kbd, html_keygen, html_label, html_legend, html_li, html_link, html_listing, html_main, html_mapel, html_mark, html_marquee, html_meta, html_meter, html_multicol, html_nav, html_nextid, html_nobr, html_noscript, html_objectel, html_ol, html_optgroup, html_option, html_output, html_p, html_param, html_picture, html_plaintext, html_pre, html_progress, html_q, html_rb, html_rp, html_rt, html_rtc, html_ruby, html_s, html_samp, html_script, html_section, html_select, html_shadow, html_slot, html_small, html_source, html_spacer, html_span, html_strike, html_strong, html_sub, html_summary, html_sup, html_table, html_tbody, html_td, html_template, html_textarea, html_tfoot, html_th, html_thead, html_time, html_title, html_tr, html_track, html_u, html_ul, html_var, html_video, html_wbr, html_xmp

Dashboards.DashType
struct Dash <: Any

Representation of Dash application

Dashboards.DashMethod
Dash(layout_maker::Function, name::String; external_stylesheets ::Vector{String} = Vector{String}(), url_base_pathname::String="/")::Dash

Construct a Dash app using callback for layout creation

Arguments

  • layout_maker::Function - function for layout creation. Must has signature ()::Component
  • name::String - Dashboard name
  • external_stylesheets::Vector{String} = Vector{String}() - vector of external css urls
  • url_base_pathname::String="/" - base url path for dashboard, default "/"
  • assets_folder::String - a path, relative to the current working directory,

for extra files to be used in the browser. Default "assets"

Examples

julia> app = Dash("Test") do
    html_div() do
        html_h1("Test Dashboard")
    end
end
Dashboards.callback!Method
callback!(func::Function, app::Dash, id::CallbackId)

Create a callback that updates the output by calling function func.

#Examples

app = Dash("Test") do
    html_div() do
        dcc_input(id="graphTitle", value="Let's Dance!", type = "text"),
        html_div(id="outputID"),
        html_div(id="outputID2")

    end
end
callback!(app, CallbackId(
    state = [(:graphTitle, :type)],
    input = [(:graphTitle, :value)],
    output = [(:outputID, :children), (:outputID2, :children)]
    )
    ) do stateType, inputValue
    return (stateType * "..." * inputValue, inputValue)
end

You can use macro callid string macro for make CallbackId :

callback!(app, callid"{graphTitle.type} graphTitle.value => outputID.children, outputID2.children") do stateType, inputValue

    return (stateType * "..." * inputValue, inputValue)
end
Dashboards.dcc_checklistFunction
dcc_checklist(;kwags...)

Checklist is a component that encapsulates several checkboxes. The values and labels of the checklist are specified in the options property and the checked items are specified with the value property. Each checkbox is rendered as an input with a surrounding label.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • options - An array of options
  • value - The currently selected value
  • className - The class of the container (div)
  • style - The style of the container (div)
  • inputStyle - The style of the <input> checkbox element
  • inputClassName - The class of the <input> checkbox element
  • labelStyle - The style of the <label> that wraps the checkbox input

and the option's label

  • labelClassName - The class of the <label> that wraps the checkbox input

and the option's label

  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, a value that the user has changed while using the app will keep that change, as long as the new value also matches what was given originally. Used in conjunction with persistence_type.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page. Since only value is allowed this prop can normally be ignored.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_confirmdialogFunction
dcc_confirmdialog(;kwags...)

ConfirmDialog is used to display the browser's native "confirm" modal, with an optional message and two buttons ("OK" and "Cancel"). This ConfirmDialog can be used in conjunction with buttons when the user is performing an action that should require an extra step of verification.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • message - Message to show in the popup.
  • submit_n_clicks - Number of times the submit button was clicked
  • submit_n_clicks_timestamp - Last time the submit button was clicked.
  • cancel_n_clicks - Number of times the popup was canceled.
  • cancel_n_clicks_timestamp - Last time the cancel button was clicked.
  • displayed - Set to true to send the ConfirmDialog.
Dashboards.dcc_confirmdialogproviderFunction
dcc_confirmdialogprovider(;kwags...)
dcc_confirmdialogprovider(children::Any;kwags...)
dcc_confirmdialogprovider(children_maker::Function;kwags...)

A wrapper component that will display a confirmation dialog when its child component has been clicked on.

For example:

dcc.ConfirmDialogProvider(
    html.Button('click me', id='btn'),
    message='Danger - Are you sure you want to continue.'
    id='confirm')

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • message - Message to show in the popup.
  • submit_n_clicks - Number of times the submit was clicked
  • submit_n_clicks_timestamp - Last time the submit button was clicked.
  • cancel_n_clicks - Number of times the popup was canceled.
  • cancel_n_clicks_timestamp - Last time the cancel button was clicked.
  • displayed - Is the modal currently displayed.
  • children - The children to hijack clicks from and display the popup.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.dcc_datepickerrangeFunction
dcc_datepickerrange(;kwags...)

DatePickerRange is a tailor made component designed for selecting timespan across multiple days off of a calendar.

The DatePicker integrates well with the Python datetime module with the startDate and endDate being returned in a string format suitable for creating datetime objects.

This component is based off of Airbnb's react-dates react component which can be found here: https://github.com/airbnb/react-dates

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • start_date - Specifies the starting date for the component.

Accepts datetime.datetime objects or strings in the format 'YYYY-MM-DD'

  • start_date_id - The HTML element ID of the start date input field.

Not used by Dash, only by CSS.

  • end_date_id - The HTML element ID of the end date input field.

Not used by Dash, only by CSS.

  • end_date - Specifies the ending date for the component.

Accepts datetime.datetime objects or strings in the format 'YYYY-MM-DD'

  • min_date_allowed - Specifies the lowest selectable date for the component.

Accepts datetime.datetime objects or strings in the format 'YYYY-MM-DD'

  • max_date_allowed - Specifies the highest selectable date for the component.

Accepts datetime.datetime objects or strings in the format 'YYYY-MM-DD'

  • initial_visible_month - Specifies the month that is initially presented when the user

opens the calendar. Accepts datetime.datetime objects or strings in the format 'YYYY-MM-DD'

  • start_date_placeholder_text - Text that will be displayed in the first input

box of the date picker when no date is selected. Default value is 'Start Date'

  • end_date_placeholder_text - Text that will be displayed in the second input

box of the date picker when no date is selected. Default value is 'End Date'

  • day_size - Size of rendered calendar days, higher number

means bigger day size and larger calendar overall

  • calendar_orientation - Orientation of calendar, either vertical or horizontal.

Valid options are 'vertical' or 'horizontal'.

  • is_RTL - Determines whether the calendar and days operate

from left to right or from right to left

  • reopen_calendar_on_clear - If True, the calendar will automatically open when cleared
  • number_of_months_shown - Number of calendar months that are shown when calendar is opened
  • with_portal - If True, calendar will open in a screen overlay portal,

not supported on vertical calendar

  • with_full_screen_portal - If True, calendar will open in a full screen overlay portal, will

take precedent over 'withPortal' if both are set to true, not supported on vertical calendar

  • first_day_of_week - Specifies what day is the first day of the week, values must be

from [0, ..., 6] with 0 denoting Sunday and 6 denoting Saturday

  • minimum_nights - Specifies a minimum number of nights that must be selected between

the startDate and the endDate

  • stay_open_on_select - If True the calendar will not close when the user has selected a value

and will wait until the user clicks off the calendar

  • show_outside_days - If True the calendar will display days that rollover into

the next month

  • month_format - Specifies the format that the month will be displayed in the calendar,

valid formats are variations of "MM YY". For example: "MM YY" renders as '05 97' for May 1997 "MMMM, YYYY" renders as 'May, 1997' for May 1997 "MMM, YY" renders as 'Sep, 97' for September 1997

  • display_format - Specifies the format that the selected dates will be displayed

valid formats are variations of "MM YY DD". For example: "MM YY DD" renders as '05 10 97' for May 10th 1997 "MMMM, YY" renders as 'May, 1997' for May 10th 1997 "M, D, YYYY" renders as '07, 10, 1997' for September 10th 1997 "MMMM" renders as 'May' for May 10 1997

  • disabled - If True, no dates can be selected.
  • clearable - Whether or not the dropdown is "clearable", that is, whether or

not a small "x" appears on the right of the dropdown that removes the selected value.

  • style - CSS styles appended to wrapper div
  • className - Appends a CSS class to the wrapper div component.
  • updatemode - Determines when the component should update

its value. If bothdates, then the DatePicker will only trigger its value when the user has finished picking both dates. If singledate, then the DatePicker will update its value as one date is picked.

  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, any persisted_props that the user has changed while using the app will keep those changes, as long as the new prop value also matches what was given originally. Used in conjunction with persistence_type and persisted_props.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_datepickersingleFunction
dcc_datepickersingle(;kwags...)

DatePickerSingle is a tailor made component designed for selecting a single day off of a calendar.

The DatePicker integrates well with the Python datetime module with the startDate and endDate being returned in a string format suitable for creating datetime objects.

This component is based off of Airbnb's react-dates react component which can be found here: https://github.com/airbnb/react-dates

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • date - Specifies the starting date for the component, best practice is to pass

value via datetime object

  • min_date_allowed - Specifies the lowest selectable date for the component.

Accepts datetime.datetime objects or strings in the format 'YYYY-MM-DD'

  • max_date_allowed - Specifies the highest selectable date for the component.

Accepts datetime.datetime objects or strings in the format 'YYYY-MM-DD'

  • initial_visible_month - Specifies the month that is initially presented when the user

opens the calendar. Accepts datetime.datetime objects or strings in the format 'YYYY-MM-DD'

  • day_size - Size of rendered calendar days, higher number

means bigger day size and larger calendar overall

  • calendar_orientation - Orientation of calendar, either vertical or horizontal.

Valid options are 'vertical' or 'horizontal'.

  • is_RTL - Determines whether the calendar and days operate

from left to right or from right to left

  • placeholder - Text that will be displayed in the input

box of the date picker when no date is selected. Default value is 'Start Date'

  • reopen_calendar_on_clear - If True, the calendar will automatically open when cleared
  • number_of_months_shown - Number of calendar months that are shown when calendar is opened
  • with_portal - If True, calendar will open in a screen overlay portal,

not supported on vertical calendar

  • with_full_screen_portal - If True, calendar will open in a full screen overlay portal, will

take precedent over 'withPortal' if both are set to True, not supported on vertical calendar

  • first_day_of_week - Specifies what day is the first day of the week, values must be

from [0, ..., 6] with 0 denoting Sunday and 6 denoting Saturday

  • stay_open_on_select - If True the calendar will not close when the user has selected a value

and will wait until the user clicks off the calendar

  • show_outside_days - If True the calendar will display days that rollover into

the next month

  • month_format - Specifies the format that the month will be displayed in the calendar,

valid formats are variations of "MM YY". For example: "MM YY" renders as '05 97' for May 1997 "MMMM, YYYY" renders as 'May, 1997' for May 1997 "MMM, YY" renders as 'Sep, 97' for September 1997

  • display_format - Specifies the format that the selected dates will be displayed

valid formats are variations of "MM YY DD". For example: "MM YY DD" renders as '05 10 97' for May 10th 1997 "MMMM, YY" renders as 'May, 1997' for May 10th 1997 "M, D, YYYY" renders as '07, 10, 1997' for September 10th 1997 "MMMM" renders as 'May' for May 10 1997

  • disabled - If True, no dates can be selected.
  • clearable - Whether or not the dropdown is "clearable", that is, whether or

not a small "x" appears on the right of the dropdown that removes the selected value.

  • style - CSS styles appended to wrapper div
  • className - Appends a CSS class to the wrapper div component.
  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, a date that the user has changed while using the app will keep that change, as long as the new date also matches what was given originally. Used in conjunction with persistence_type.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page. Since only date is allowed this prop can normally be ignored.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_dropdownFunction
dcc_dropdown(;kwags...)

Dropdown is an interactive dropdown element for selecting one or more items. The values and labels of the dropdown items are specified in the options property and the selected item(s) are specified with the value property.

Use a dropdown when you have many options (more than 5) or when you are constrained for space. Otherwise, you can use RadioItems or a Checklist, which have the benefit of showing the users all of the items at once.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • options - An array of options {label: [string|number], value: [string|number]},

an optional disabled field can be used for each option

  • value - The value of the input. If multi is false (the default)

then value is just a string that corresponds to the values provided in the options property. If multi is true, then multiple values can be selected at once, and value is an array of items with values corresponding to those in the options prop.

  • optionHeight - height of each option. Can be increased when label lengths would wrap around
  • className - className of the dropdown element
  • clearable - Whether or not the dropdown is "clearable", that is, whether or

not a small "x" appears on the right of the dropdown that removes the selected value.

  • disabled - If true, this dropdown is disabled and the selection cannot be changed.
  • multi - If true, the user can select multiple values
  • placeholder - The grey, default text shown when no option is selected
  • searchable - Whether to enable the searching feature or not
  • search_value - The value typed in the DropDown for searching.
  • style - Defines CSS styles which will override styles previously set.
  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, a value that the user has changed while using the app will keep that change, as long as the new value also matches what was given originally. Used in conjunction with persistence_type.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page. Since only value is allowed this prop can normally be ignored.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_graphFunction
dcc_graph(;kwags...)

Graph can be used to render any plotly.js-powered data visualization.

You can define callbacks based on user interaction with Graphs such as hovering, clicking or selecting

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • clickData - Data from latest click event. Read-only.
  • clickAnnotationData - Data from latest click annotation event. Read-only.
  • hoverData - Data from latest hover event. Read-only.
  • clear_on_unhover - If True, clear_on_unhover will clear the hoverData property

when the user "unhovers" from a point. If False, then the hoverData property will be equal to the data from the last point that was hovered over.

  • selectedData - Data from latest select event. Read-only.
  • relayoutData - Data from latest relayout event which occurs

when the user zooms or pans on the plot or other layout-level edits. Has the form {<attr string>: <value>} describing the changes made. Read-only.

  • extendData - Data that should be appended to existing traces. Has the form

[updateData, traceIndices, maxPoints], where updateData is an object containing the data to extend, traceIndices (optional) is an array of trace indices that should be extended, and maxPoints (optional) is either an integer defining the maximum number of points allowed or an object with key:value pairs matching updateData Reference the Plotly.extendTraces API for full usage: https://plot.ly/javascript/plotlyjs-function-reference/#plotlyextendtraces

  • restyleData - Data from latest restyle event which occurs

when the user toggles a legend item, changes parcoords selections, or other trace-level edits. Has the form [edits, indices], where edits is an object {<attr string>: <value>} describing the changes made, and indices is an array of trace indices that were edited. Read-only.

  • figure - Plotly figure object. See schema:

https://plot.ly/javascript/reference

config is set separately by the config property

  • style - Generic style overrides on the plot div
  • className - className of the parent div
  • animate - Beta: If true, animate between updates using

plotly.js's animate function

  • animation_options - Beta: Object containing animation settings.

Only applies if animate is true

  • config - Plotly.js config options.

See https://plot.ly/javascript/configuration-options/ for more info.

  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.dcc_inputFunction
dcc_input(;kwags...)

A basic HTML input control for entering text, numbers, or passwords.

Note that checkbox and radio types are supported through the Checklist and RadioItems component. Dates, times, and file uploads are also supported through separate components.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • value - The value of the input
  • style - The input's inline styles
  • className - The class of the input element
  • debounce - If true, changes to input will be sent back to the Dash server only on enter or when losing focus.

If it's false, it will sent the value back on every change.

  • type - The type of control to render.
  • autoComplete - This attribute indicates whether the value of the control can be automatically completed by the browser.
  • autoFocus - The element should be automatically focused after the page loaded.

autoFocus is an HTML boolean attribute - it is enabled by a boolean or 'autoFocus'. Alternative capitalizations autofocus & AUTOFOCUS are also acccepted.

  • disabled - If true, the input is disabled and can't be clicked on.

disabled is an HTML boolean attribute - it is enabled by a boolean or 'disabled'. Alternative capitalizations DISABLED

  • inputMode - Provides a hint to the browser as to the type of data that might be

entered by the user while editing the element or its contents.

  • list - Identifies a list of pre-defined options to suggest to the user.

The value must be the id of a <datalist> element in the same document. The browser displays only options that are valid values for this input element. This attribute is ignored when the type attribute's value is hidden, checkbox, radio, file, or a button type.

  • max - The maximum (numeric or date-time) value for this item, which must not be less than its minimum (min attribute) value.
  • maxLength - If the value of the type attribute is text, email, search, password, tel, or url, this attribute specifies the maximum number of characters (in UTF-16 code units) that the user can enter. For other control types, it is ignored. It can exceed the value of the size attribute. If it is not specified, the user can enter an unlimited number of characters. Specifying a negative number results in the default behavior (i.e. the user can enter an unlimited number of characters). The constraint is evaluated only when the value of the attribute has been changed.
  • min - The minimum (numeric or date-time) value for this item, which must not be greater than its maximum (max attribute) value.
  • minLength - If the value of the type attribute is text, email, search, password, tel, or url, this attribute specifies the minimum number of characters (in Unicode code points) that the user can enter. For other control types, it is ignored.
  • multiple - This Boolean attribute indicates whether the user can enter more than one value. This attribute applies when the type attribute is set to email or file, otherwise it is ignored.
  • name - The name of the control, which is submitted with the form data.
  • pattern - A regular expression that the control's value is checked against. The pattern must match the entire value, not just some subset. Use the title attribute to describe the pattern to help the user. This attribute applies when the value of the type attribute is text, search, tel, url, email, or password, otherwise it is ignored. The regular expression language is the same as JavaScript RegExp algorithm, with the 'u' parameter that makes it treat the pattern as a sequence of unicode code points. The pattern is not surrounded by forward slashes.
  • placeholder - A hint to the user of what can be entered in the control . The placeholder text must not contain carriage returns or line-feeds. Note: Do not use the placeholder attribute instead of a <label> element, their purposes are different. The <label> attribute describes the role of the form element (i.e. it indicates what kind of information is expected), and the placeholder attribute is a hint about the format that the content should take. There are cases in which the placeholder attribute is never displayed to the user, so the form must be understandable without it.
  • readOnly - This attribute indicates that the user cannot modify the value of the control. The value of the attribute is irrelevant. If you need read-write access to the input value, do not add the "readonly" attribute. It is ignored if the value of the type attribute is hidden, range, color, checkbox, radio, file, or a button type (such as button or submit).

readOnly is an HTML boolean attribute - it is enabled by a boolean or 'readOnly'. Alternative capitalizations readonly & READONLY are also acccepted.

  • required - This attribute specifies that the user must fill in a value before submitting a form. It cannot be used when the type attribute is hidden, image, or a button type (submit, reset, or button). The :optional and :required CSS pseudo-classes will be applied to the field as appropriate.

required is an HTML boolean attribute - it is enabled by a boolean or 'required'. Alternative capitalizations REQUIRED are also acccepted.

  • selectionDirection - The direction in which selection occurred. This is "forward" if the selection was made from left-to-right in an LTR locale or right-to-left in an RTL locale, or "backward" if the selection was made in the opposite direction. On platforms on which it's possible this value isn't known, the value can be "none"; for example, on macOS, the default direction is "none", then as the user begins to modify the selection using the keyboard, this will change to reflect the direction in which the selection is expanding.
  • selectionEnd - The offset into the element's text content of the last selected character. If there's no selection, this value indicates the offset to the character following the current text input cursor position (that is, the position the next character typed would occupy).
  • selectionStart - The offset into the element's text content of the first selected character. If there's no selection, this value indicates the offset to the character following the current text input cursor position (that is, the position the next character typed would occupy).
  • size - The initial size of the control. This value is in pixels unless the value of the type attribute is text or password, in which case it is an integer number of characters. Starting in, this attribute applies only when the type attribute is set to text, search, tel, url, email, or password, otherwise it is ignored. In addition, the size must be greater than zero. If you do not specify a size, a default value of 20 is used.' simply states "the user agent should ensure that at least that many characters are visible", but different characters can have different widths in certain fonts. In some browsers, a certain string with x characters will not be entirely visible even if size is defined to at least x.
  • spellCheck - Setting the value of this attribute to true indicates that the element needs to have its spelling and grammar checked. The value default indicates that the element is to act according to a default behavior, possibly based on the parent element's own spellcheck value. The value false indicates that the element should not be checked.
  • step - Works with the min and max attributes to limit the increments at which a numeric or date-time value can be set. It can be the string any or a positive floating point number. If this attribute is not set to any, the control accepts only values at multiples of the step value greater than the minimum.
  • n_submit - Number of times the Enter key was pressed while the input had focus.
  • n_submit_timestamp - Last time that Enter was pressed.
  • n_blur - Number of times the input lost focus.
  • n_blur_timestamp - Last time the input lost focus.
  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, a value that the user has changed while using the app will keep that change, as long as the new value also matches what was given originally. Used in conjunction with persistence_type.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page. Since only value is allowed this prop can normally be ignored.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_intervalFunction
dcc_interval(;kwags...)

A component that repeatedly increments a counter n_intervals with a fixed time delay between each increment. Interval is good for triggering a component on a recurring basis. The time delay is set with the property "interval" in milliseconds.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • interval - This component will increment the counter n_intervals every

interval milliseconds

  • disabled - If True, the counter will no longer update
  • n_intervals - Number of times the interval has passed
  • max_intervals - Number of times the interval will be fired.

If -1, then the interval has no limit (the default) and if 0 then the interval stops running.

Dashboards.dcc_linkFunction
dcc_link(;kwags...)
dcc_link(children::Any;kwags...)
dcc_link(children_maker::Function;kwags...)

Link allows you to create a clickable link within a multi-page app.

For links with destinations outside the current app, html.A is a better component to use.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • href - The URL of a linked resource.
  • refresh - Controls whether or not the page will refresh when the link is clicked
  • className - Often used with CSS to style elements with common properties.
  • style - Defines CSS styles which will override styles previously set.
  • children - The children of this component
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.dcc_loadingFunction
dcc_loading(;kwags...)
dcc_loading(children::Any;kwags...)
dcc_loading(children_maker::Function;kwags...)

A Loading component that wraps any other component and displays a spinner until the wrapped component has rendered.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - Array that holds components to render
  • type - Property that determines which spinner to show - one of 'graph', 'cube', 'circle', 'dot', or 'default'.
  • fullscreen - Boolean that determines if the loading spinner will be displayed full-screen or not
  • debug - Boolean that determines if the loading spinner will display the status.propname and componentname
  • className - Additional CSS class for the root DOM node
  • style - Additional CSS styling for the root DOM node
  • color - Primary colour used for the loading spinners
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.dcc_locationFunction
dcc_location(;kwags...)

Update and track the current window.location object through the window.history state. Use in conjunction with the dash_core_components.Link component to make apps with multiple pages.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • pathname - pathname in window.location - e.g., "/my/full/pathname"
  • search - search in window.location - e.g., "?myargument=1"
  • hash - hash in window.location - e.g., "#myhash"
  • href - href in window.location - e.g., "/my/full/pathname?myargument=1#myhash"
  • refresh - Refresh the page when the location is updated?
Dashboards.dcc_logoutbuttonFunction
dcc_logoutbutton(;kwags...)

Logout button to submit a form post request to the logout_url prop. Usage is intended for dash-deployment-server authentication.

DDS usage:

dcc.LogoutButton(logout_url=os.getenv('DASH_LOGOUT_URL'))

Custom usage:

  • Implement a login mechanism.
  • Create a flask route with a post method handler.

@app.server.route('/logout', methods=['POST'])

  • The logout route should perform what's necessary for the user to logout.
  • If you store the session in a cookie, clear the cookie:

rep = flask.Response(); rep.set_cookie('session', '', expires=0)

  • Create a logout button component and assign it the logout_url

dcc.LogoutButton(logout_url='/logout')

See https://dash.plot.ly/dash-core-components/logout_button for more documentation and examples.

Arguments

  • id - Id of the button.
  • label - Text of the button
  • logout_url - Url to submit a post logout request.
  • style - Style of the button
  • method - Http method to submit the logout form.
  • className - CSS class for the button.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.dcc_markdownFunction
dcc_markdown(;kwags...)
dcc_markdown(children::Any;kwags...)
dcc_markdown(children_maker::Function;kwags...)

A component that renders Markdown text as specified by the GitHub Markdown spec. These component uses react-markdown under the hood.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • className - Class name of the container element
  • dangerously_allow_html - A boolean to control raw HTML escaping.

Setting HTML from code is risky because it's easy to inadvertently expose your users to a cross-site scripting (XSS) (https://en.wikipedia.org/wiki/Cross-site_scripting) attack.

  • children - A markdown string (or array of strings) that adhreres to the CommonMark spec
  • dedent - Remove matching leading whitespace from all lines.

Lines that are empty, or contain only whitespace, are ignored. Both spaces and tab characters are removed, but only if they match; we will not convert tabs to spaces or vice versa.

  • highlight_config - Config options for syntax highlighting.
  • loading_state - Object that holds the loading state object coming from dash-renderer
  • style - User-defined inline styles for the rendered Markdown
Dashboards.dcc_radioitemsFunction
dcc_radioitems(;kwags...)

RadioItems is a component that encapsulates several radio item inputs. The values and labels of the RadioItems is specified in the options property and the seleced item is specified with the value property. Each radio item is rendered as an input with a surrounding label.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • options - An array of options
  • value - The currently selected value
  • style - The style of the container (div)
  • className - The class of the container (div)
  • inputStyle - The style of the <input> radio element
  • inputClassName - The class of the <input> radio element
  • labelStyle - The style of the <label> that wraps the radio input

and the option's label

  • labelClassName - The class of the <label> that wraps the radio input

and the option's label

  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, a value that the user has changed while using the app will keep that change, as long as the new value also matches what was given originally. Used in conjunction with persistence_type.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page. Since only value is allowed this prop can normally be ignored.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_rangesliderFunction
dcc_rangeslider(;kwags...)

A double slider with two handles. Used for specifying a range of numerical values.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • marks - Marks on the slider.

The key determines the position (a number), and the value determines what will show. If you want to set the style of a specific mark point, the value should be an object which contains style and label properties.

  • value - The value of the input
  • allowCross - allowCross could be set as true to allow those handles to cross.
  • className - Additional CSS class for the root DOM node
  • count - Determine how many ranges to render, and multiple handles

will be rendered (number + 1).

  • disabled - If true, the handles can't be moved.
  • dots - When the step value is greater than 1,

you can set the dots to true if you want to render the slider with dots.

  • included - If the value is true, it means a continuous

value is included. Otherwise, it is an independent value.

  • min - Minimum allowed value of the slider
  • max - Maximum allowed value of the slider
  • pushable - pushable could be set as true to allow pushing of

surrounding handles when moving an handle. When set to a number, the number will be the minimum ensured distance between handles.

  • tooltip - Configuration for tooltips describing the current slider values
  • step - Value by which increments or decrements are made
  • vertical - If true, the slider will be vertical
  • updatemode - Determines when the component should update

its value. If mouseup, then the slider will only trigger its value when the user has finished dragging the slider. If drag, then the slider will update its value continuously as it is being dragged. Only use drag if your updates are fast.

  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, a value that the user has changed while using the app will keep that change, as long as the new value also matches what was given originally. Used in conjunction with persistence_type.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page. Since only value is allowed this prop can normally be ignored.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_sliderFunction
dcc_slider(;kwags...)

A slider component with a single handle.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • marks - Marks on the slider.

The key determines the position (a number), and the value determines what will show. If you want to set the style of a specific mark point, the value should be an object which contains style and label properties.

  • value - The value of the input
  • className - Additional CSS class for the root DOM node
  • disabled - If true, the handles can't be moved.
  • dots - When the step value is greater than 1,

you can set the dots to true if you want to render the slider with dots.

  • included - If the value is true, it means a continuous

value is included. Otherwise, it is an independent value.

  • min - Minimum allowed value of the slider
  • max - Maximum allowed value of the slider
  • tooltip - Configuration for tooltips describing the current slider value
  • step - Value by which increments or decrements are made
  • vertical - If true, the slider will be vertical
  • updatemode - Determines when the component should update

its value. If mouseup, then the slider will only trigger its value when the user has finished dragging the slider. If drag, then the slider will update its value continuously as it is being dragged. Only use drag if your updates are fast.

  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, a value that the user has changed while using the app will keep that change, as long as the new value also matches what was given originally. Used in conjunction with persistence_type.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page. Since only value is allowed this prop can normally be ignored.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_storeFunction
dcc_store(;kwags...)

Easily keep data on the client side with this component. The data is not inserted in the DOM. Data can be in memory, localStorage or sessionStorage. The data will be kept with the id as key.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • storage_type - The type of the web storage.

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

  • data - The stored data for the id.
  • clear_data - Set to true to remove the data contained in data_key.
  • modified_timestamp - The last time the storage was modified.
Dashboards.dcc_tabFunction
dcc_tab(;kwags...)
dcc_tab(children::Any;kwags...)
dcc_tab(children_maker::Function;kwags...)

Part of dcc.Tabs - this is the child Tab component used to render a tabbed page. Its children will be set as the content of that tab, which if clicked will become visible.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • label - The tab's label
  • children - The content of the tab - will only be displayed if this tab is selected
  • value - Value for determining which Tab is currently selected
  • disabled - Determines if tab is disabled or not - defaults to false
  • disabled_style - Overrides the default (inline) styles when disabled
  • disabled_className - Appends a class to the Tab component when it is disabled.
  • className - Appends a class to the Tab component.
  • selected_className - Appends a class to the Tab component when it is selected.
  • style - Overrides the default (inline) styles for the Tab component.
  • selected_style - Overrides the default (inline) styles for the Tab component when it is selected.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.dcc_tabsFunction
dcc_tabs(;kwags...)
dcc_tabs(children::Any;kwags...)
dcc_tabs(children_maker::Function;kwags...)

A Dash component that lets you render pages with tabs - the Tabs component's children can be dcc.Tab components, which can hold a label that will be displayed as a tab, and can in turn hold children components that will be that tab's content.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • value - The value of the currently selected Tab
  • className - Appends a class to the Tabs container holding the individual Tab components.
  • content_className - Appends a class to the Tab content container holding the children of the Tab that is selected.
  • parent_className - Appends a class to the top-level parent container holding both the Tabs container and the content container.
  • style - Appends (inline) styles to the Tabs container holding the individual Tab components.
  • parent_style - Appends (inline) styles to the top-level parent container holding both the Tabs container and the content container.
  • content_style - Appends (inline) styles to the tab content container holding the children of the Tab that is selected.
  • vertical - Renders the tabs vertically (on the side)
  • mobile_breakpoint - Breakpoint at which tabs are rendered full width (can be 0 if you don't want full width tabs on mobile)
  • children - Array that holds Tab components
  • colors - Holds the colors used by the Tabs and Tab components. If you set these, you should specify colors for all properties, so:

colors: { border: '#d6d6d6', primary: '#1975FA', background: '#f9f9f9' }

  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, a value that the user has changed while using the app will keep that change, as long as the new value also matches what was given originally. Used in conjunction with persistence_type.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page. Since only value is allowed this prop can normally be ignored.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_textareaFunction
dcc_textarea(;kwags...)

A basic HTML textarea for entering multiline text.

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • value - The value of the textarea
  • autoFocus - The element should be automatically focused after the page loaded.
  • cols - Defines the number of columns in a textarea.
  • disabled - Indicates whether the user can interact with the element.
  • form - Indicates the form that is the owner of the element.
  • maxLength - Defines the maximum number of characters allowed in the element.
  • minLength - Defines the minimum number of characters allowed in the element.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • placeholder - Provides a hint to the user of what can be entered in the field.
  • readOnly - Indicates whether the element can be edited.

readOnly is an HTML boolean attribute - it is enabled by a boolean or 'readOnly'. Alternative capitalizations readonly & READONLY are also acccepted.

  • required - Indicates whether this element is required to fill out or not.

required is an HTML boolean attribute - it is enabled by a boolean or 'required'. Alternative capitalizations REQUIRED are also acccepted.

  • rows - Defines the number of rows in a text area.
  • wrap - Indicates whether the text should be wrapped.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • n_blur - Number of times the textarea lost focus.
  • n_blur_timestamp - Last time the textarea lost focus.
  • n_clicks - Number of times the textarea has been clicked.
  • n_clicks_timestamp - Last time the textarea was clicked.
  • loading_state - Object that holds the loading state object coming from dash-renderer
  • persistence - Used to allow user interactions in this component to be persisted when

the component - or the page - is refreshed. If persisted is truthy and hasn't changed from its previous value, a value that the user has changed while using the app will keep that change, as long as the new value also matches what was given originally. Used in conjunction with persistence_type.

  • persisted_props - Properties whose user interactions will persist after refreshing the

component or the page. Since only value is allowed this prop can normally be ignored.

  • persistence_type - Where persisted user changes will be stored:

memory: only kept in memory, reset on page refresh. local: window.localStorage, data is kept after the browser quit. session: window.sessionStorage, data is cleared once the browser quit.

Dashboards.dcc_uploadFunction
dcc_upload(;kwags...)
dcc_upload(children::Any;kwags...)
dcc_upload(children_maker::Function;kwags...)

Upload components allow your app to accept user-uploaded files via drag'n'drop

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • contents - The contents of the uploaded file as a binary string
  • filename - The name of the file(s) that was(were) uploaded.

Note that this does not include the path of the file (for security reasons).

  • last_modified - The last modified date of the file that was uploaded in unix time

(seconds since 1970).

  • children - Contents of the upload component
  • accept - Allow specific types of files.

See https://github.com/okonet/attr-accept for more information. Keep in mind that mime type determination is not reliable across platforms. CSV files, for example, are reported as text/plain under macOS but as application/vnd.ms-excel under Windows. In some cases there might not be a mime type set at all. See: https://github.com/react-dropzone/react-dropzone/issues/276

  • disabled - Enable/disable the upload component entirely
  • disable_click - Disallow clicking on the component to open the file dialog
  • max_size - Maximum file size. If -1, then infinite
  • min_size - Minimum file size
  • multiple - Allow dropping multiple files
  • className - HTML class name of the component
  • className_active - HTML class name of the component while active
  • className_reject - HTML class name of the component if rejected
  • className_disabled - HTML class name of the component if disabled
  • style - CSS styles to apply
  • style_active - CSS styles to apply while active
  • style_reject - CSS styles if rejected
  • style_disabled - CSS styles if disabled
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_aFunction
html_a(;kwags...)
html_a(children::Any;kwags...)
html_a(children_maker::Function;kwags...)

A is a wrapper for the <a> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • download - Indicates that the hyperlink is to be used for downloading a resource.
  • href - The URL of a linked resource.
  • hrefLang - Specifies the language of the linked resource.
  • media - Specifies a hint of the media for which the linked resource was designed.
  • rel - Specifies the relationship of the target object to the link object.
  • shape -
  • target -
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_abbrFunction
html_abbr(;kwags...)
html_abbr(children::Any;kwags...)
html_abbr(children_maker::Function;kwags...)

Abbr is a wrapper for the <abbr> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/abbr

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_acronymFunction
html_acronym(;kwags...)
html_acronym(children::Any;kwags...)
html_acronym(children_maker::Function;kwags...)

Acronym is a wrapper for the <acronym> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/acronym

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_addressFunction
html_address(;kwags...)
html_address(children::Any;kwags...)
html_address(children_maker::Function;kwags...)

Address is a wrapper for the <address> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/address

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_areaFunction
html_area(;kwags...)
html_area(children::Any;kwags...)
html_area(children_maker::Function;kwags...)

Area is a wrapper for the <area> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/area

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • alt - Alternative text in case an image can't be displayed.
  • coords - A set of values specifying the coordinates of the hot-spot region.
  • download - Indicates that the hyperlink is to be used for downloading a resource.
  • href - The URL of a linked resource.
  • hrefLang - Specifies the language of the linked resource.
  • media - Specifies a hint of the media for which the linked resource was designed.
  • rel - Specifies the relationship of the target object to the link object.
  • shape -
  • target -
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_articleFunction
html_article(;kwags...)
html_article(children::Any;kwags...)
html_article(children_maker::Function;kwags...)

Article is a wrapper for the <article> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/article

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_asideFunction
html_aside(;kwags...)
html_aside(children::Any;kwags...)
html_aside(children_maker::Function;kwags...)

Aside is a wrapper for the <aside> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/aside

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_audioFunction
html_audio(;kwags...)
html_audio(children::Any;kwags...)
html_audio(children_maker::Function;kwags...)

Audio is a wrapper for the <audio> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/audio

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • autoPlay - The audio or video should play as soon as possible.
  • controls - Indicates whether the browser should show playback controls to the user.
  • crossOrigin - How the element handles cross-origin requests
  • loop - Indicates whether the media should start playing from the start when it's finished.
  • muted - Indicates whether the audio will be initially silenced on page load.
  • preload - Indicates whether the whole resource, parts of it or nothing should be preloaded.
  • src - The URL of the embeddable content.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_bFunction
html_b(;kwags...)
html_b(children::Any;kwags...)
html_b(children_maker::Function;kwags...)

B is a wrapper for the <b> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/b

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_baseFunction
html_base(;kwags...)
html_base(children::Any;kwags...)
html_base(children_maker::Function;kwags...)

Base is a wrapper for the <base> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/base

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • href - The URL of a linked resource.
  • target -
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_basefontFunction
html_basefont(;kwags...)
html_basefont(children::Any;kwags...)
html_basefont(children_maker::Function;kwags...)

Basefont is a wrapper for the <basefont> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/basefont

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_bdiFunction
html_bdi(;kwags...)
html_bdi(children::Any;kwags...)
html_bdi(children_maker::Function;kwags...)

Bdi is a wrapper for the <bdi> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdi

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_bdoFunction
html_bdo(;kwags...)
html_bdo(children::Any;kwags...)
html_bdo(children_maker::Function;kwags...)

Bdo is a wrapper for the <bdo> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/bdo

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_bigFunction
html_big(;kwags...)
html_big(children::Any;kwags...)
html_big(children_maker::Function;kwags...)

Big is a wrapper for the <big> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/big

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_blinkFunction
html_blink(;kwags...)
html_blink(children::Any;kwags...)
html_blink(children_maker::Function;kwags...)

Blink is a wrapper for the <blink> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blink

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_blockquoteFunction
html_blockquote(;kwags...)
html_blockquote(children::Any;kwags...)
html_blockquote(children_maker::Function;kwags...)

Blockquote is a wrapper for the <blockquote> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/blockquote

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • cite - Contains a URI which points to the source of the quote or change.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_brFunction
html_br(;kwags...)
html_br(children::Any;kwags...)
html_br(children_maker::Function;kwags...)

Br is a wrapper for the <br> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/br

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_buttonFunction
html_button(;kwags...)
html_button(children::Any;kwags...)
html_button(children_maker::Function;kwags...)

Button is a wrapper for the <button> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • autoFocus - The element should be automatically focused after the page loaded.
  • disabled - Indicates whether the user can interact with the element.
  • form - Indicates the form that is the owner of the element.
  • formAction - Indicates the action of the element, overriding the action defined in the <form>.
  • formEncType - If the button/input is a submit button (type="submit"), this attribute sets the encoding type to use during form submission. If this attribute is specified, it overrides the enctype attribute of the button's form owner.
  • formMethod - If the button/input is a submit button (type="submit"), this attribute sets the submission method to use during form submission (GET, POST, etc.). If this attribute is specified, it overrides the method attribute of the button's form owner.
  • formNoValidate - If the button/input is a submit button (type="submit"), this boolean attribute specifies that the form is not to be validated when it is submitted. If this attribute is specified, it overrides the novalidate attribute of the button's form owner.
  • formTarget - If the button/input is a submit button (type="submit"), this attribute specifies the browsing context (for example, tab, window, or inline frame) in which to display the response that is received after submitting the form. If this attribute is specified, it overrides the target attribute of the button's form owner.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • type - Defines the type of the element.
  • value - Defines a default value which will be displayed in the element on page load.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_canvasFunction
html_canvas(;kwags...)
html_canvas(children::Any;kwags...)
html_canvas(children_maker::Function;kwags...)

Canvas is a wrapper for the <canvas> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • height - Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as <div>, this is a legacy attribute, in which case the CSS height property should be used instead.
  • width - For the elements listed here, this establishes the element's width. Note: For all other instances, such as <div>, this is a legacy attribute, in which case the CSS width property should be used instead.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_captionFunction
html_caption(;kwags...)
html_caption(children::Any;kwags...)
html_caption(children_maker::Function;kwags...)

Caption is a wrapper for the <caption> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/caption

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_centerFunction
html_center(;kwags...)
html_center(children::Any;kwags...)
html_center(children_maker::Function;kwags...)

Center is a wrapper for the <center> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/center

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_citeFunction
html_cite(;kwags...)
html_cite(children::Any;kwags...)
html_cite(children_maker::Function;kwags...)

Cite is a wrapper for the <cite> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/cite

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_codeFunction
html_code(;kwags...)
html_code(children::Any;kwags...)
html_code(children_maker::Function;kwags...)

Code is a wrapper for the <code> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/code

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_colFunction
html_col(;kwags...)
html_col(children::Any;kwags...)
html_col(children_maker::Function;kwags...)

Col is a wrapper for the <col> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/col

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • span -
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_colgroupFunction
html_colgroup(;kwags...)
html_colgroup(children::Any;kwags...)
html_colgroup(children_maker::Function;kwags...)

Colgroup is a wrapper for the <colgroup> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/colgroup

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • span -
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_commandFunction
html_command(;kwags...)
html_command(children::Any;kwags...)
html_command(children_maker::Function;kwags...)

Command is a wrapper for the <command> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/command

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • checked - Indicates whether the element should be checked on page load.
  • disabled - Indicates whether the user can interact with the element.
  • icon - Specifies a picture which represents the command.
  • radioGroup -
  • type - Defines the type of the element.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_contentFunction
html_content(;kwags...)
html_content(children::Any;kwags...)
html_content(children_maker::Function;kwags...)

Content is a wrapper for the <content> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/content

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_dataFunction
html_data(;kwags...)
html_data(children::Any;kwags...)
html_data(children_maker::Function;kwags...)

Data is a wrapper for the <data> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/data

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • value - Defines a default value which will be displayed in the element on page load.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_datalistFunction
html_datalist(;kwags...)
html_datalist(children::Any;kwags...)
html_datalist(children_maker::Function;kwags...)

Datalist is a wrapper for the <datalist> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/datalist

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_ddFunction
html_dd(;kwags...)
html_dd(children::Any;kwags...)
html_dd(children_maker::Function;kwags...)

Dd is a wrapper for the <dd> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dd

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_delFunction
html_del(;kwags...)
html_del(children::Any;kwags...)
html_del(children_maker::Function;kwags...)

Del is a wrapper for the <del> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/del

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • cite - Contains a URI which points to the source of the quote or change.
  • dateTime - Indicates the date and time associated with the element.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_detailsFunction
html_details(;kwags...)
html_details(children::Any;kwags...)
html_details(children_maker::Function;kwags...)

Details is a wrapper for the <details> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/details

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • open - Indicates whether the details will be shown on page load.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_dfnFunction
html_dfn(;kwags...)
html_dfn(children::Any;kwags...)
html_dfn(children_maker::Function;kwags...)

Dfn is a wrapper for the <dfn> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dfn

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_dialogFunction
html_dialog(;kwags...)
html_dialog(children::Any;kwags...)
html_dialog(children_maker::Function;kwags...)

Dialog is a wrapper for the <dialog> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dialog

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_divFunction
html_div(;kwags...)
html_div(children::Any;kwags...)
html_div(children_maker::Function;kwags...)

Div is a wrapper for the <div> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/div

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_dlFunction
html_dl(;kwags...)
html_dl(children::Any;kwags...)
html_dl(children_maker::Function;kwags...)

Dl is a wrapper for the <dl> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_dtFunction
html_dt(;kwags...)
html_dt(children::Any;kwags...)
html_dt(children_maker::Function;kwags...)

Dt is a wrapper for the <dt> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dt

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_elementFunction
html_element(;kwags...)
html_element(children::Any;kwags...)
html_element(children_maker::Function;kwags...)

Element is a wrapper for the <element> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/element

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_emFunction
html_em(;kwags...)
html_em(children::Any;kwags...)
html_em(children_maker::Function;kwags...)

Em is a wrapper for the <em> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/em

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_embedFunction
html_embed(;kwags...)
html_embed(children::Any;kwags...)
html_embed(children_maker::Function;kwags...)

Embed is a wrapper for the <embed> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/embed

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • height - Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as <div>, this is a legacy attribute, in which case the CSS height property should be used instead.
  • src - The URL of the embeddable content.
  • type - Defines the type of the element.
  • width - For the elements listed here, this establishes the element's width. Note: For all other instances, such as <div>, this is a legacy attribute, in which case the CSS width property should be used instead.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_fieldsetFunction
html_fieldset(;kwags...)
html_fieldset(children::Any;kwags...)
html_fieldset(children_maker::Function;kwags...)

Fieldset is a wrapper for the <fieldset> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • disabled - Indicates whether the user can interact with the element.
  • form - Indicates the form that is the owner of the element.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_figcaptionFunction
html_figcaption(;kwags...)
html_figcaption(children::Any;kwags...)
html_figcaption(children_maker::Function;kwags...)

Figcaption is a wrapper for the <figcaption> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figcaption

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_figureFunction
html_figure(;kwags...)
html_figure(children::Any;kwags...)
html_figure(children_maker::Function;kwags...)

Figure is a wrapper for the <figure> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/figure

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_fontFunction
html_font(;kwags...)
html_font(children::Any;kwags...)
html_font(children_maker::Function;kwags...)

Font is a wrapper for the <font> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/font

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_footerFunction
html_footer(;kwags...)
html_footer(children::Any;kwags...)
html_footer(children_maker::Function;kwags...)

Footer is a wrapper for the <footer> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/footer

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_formFunction
html_form(;kwags...)
html_form(children::Any;kwags...)
html_form(children_maker::Function;kwags...)

Form is a wrapper for the <form> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accept - List of types the server accepts, typically a file type.
  • acceptCharset - List of supported charsets.
  • action - The URI of a program that processes the information submitted via the form.
  • autoComplete - Indicates whether controls in this form can by default have their values automatically completed by the browser.
  • encType - Defines the content type of the form date when the method is POST.
  • method - Defines which HTTP method to use when submitting the form. Can be GET (default) or POST.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • noValidate - This attribute indicates that the form shouldn't be validated when submitted.
  • target -
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_frameFunction
html_frame(;kwags...)
html_frame(children::Any;kwags...)
html_frame(children_maker::Function;kwags...)

Frame is a wrapper for the <frame> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/frame

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_framesetFunction
html_frameset(;kwags...)
html_frameset(children::Any;kwags...)
html_frameset(children_maker::Function;kwags...)

Frameset is a wrapper for the <frameset> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/frameset

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_h1Function
html_h1(;kwags...)
html_h1(children::Any;kwags...)
html_h1(children_maker::Function;kwags...)

H1 is a wrapper for the <h1> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h1

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_h2Function
html_h2(;kwags...)
html_h2(children::Any;kwags...)
html_h2(children_maker::Function;kwags...)

H2 is a wrapper for the <h2> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h2

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_h3Function
html_h3(;kwags...)
html_h3(children::Any;kwags...)
html_h3(children_maker::Function;kwags...)

H3 is a wrapper for the <h3> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h3

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_h4Function
html_h4(;kwags...)
html_h4(children::Any;kwags...)
html_h4(children_maker::Function;kwags...)

H4 is a wrapper for the <h4> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h4

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_h5Function
html_h5(;kwags...)
html_h5(children::Any;kwags...)
html_h5(children_maker::Function;kwags...)

H5 is a wrapper for the <h5> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h5

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_h6Function
html_h6(;kwags...)
html_h6(children::Any;kwags...)
html_h6(children_maker::Function;kwags...)

H6 is a wrapper for the <h6> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/h6

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_headerFunction
html_header(;kwags...)
html_header(children::Any;kwags...)
html_header(children_maker::Function;kwags...)

Header is a wrapper for the <header> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/header

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_hgroupFunction
html_hgroup(;kwags...)
html_hgroup(children::Any;kwags...)
html_hgroup(children_maker::Function;kwags...)

Hgroup is a wrapper for the <hgroup> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hgroup

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_hrFunction
html_hr(;kwags...)
html_hr(children::Any;kwags...)
html_hr(children_maker::Function;kwags...)

Hr is a wrapper for the <hr> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/hr

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_iFunction
html_i(;kwags...)
html_i(children::Any;kwags...)
html_i(children_maker::Function;kwags...)

I is a wrapper for the <i> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/i

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_iframeFunction
html_iframe(;kwags...)
html_iframe(children::Any;kwags...)
html_iframe(children_maker::Function;kwags...)

Iframe is a wrapper for the <iframe> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • height - Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as <div>, this is a legacy attribute, in which case the CSS height property should be used instead.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • sandbox - Stops a document loaded in an iframe from using certain features (such as submitting forms or opening new windows).
  • src - The URL of the embeddable content.
  • srcDoc -
  • width - For the elements listed here, this establishes the element's width. Note: For all other instances, such as <div>, this is a legacy attribute, in which case the CSS width property should be used instead.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_imgFunction
html_img(;kwags...)
html_img(children::Any;kwags...)
html_img(children_maker::Function;kwags...)

Img is a wrapper for the <img> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • alt - Alternative text in case an image can't be displayed.
  • crossOrigin - How the element handles cross-origin requests
  • height - Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as <div>, this is a legacy attribute, in which case the CSS height property should be used instead.
  • sizes -
  • src - The URL of the embeddable content.
  • srcSet - One or more responsive image candidates.
  • useMap -
  • width - For the elements listed here, this establishes the element's width. Note: For all other instances, such as <div>, this is a legacy attribute, in which case the CSS width property should be used instead.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_insFunction
html_ins(;kwags...)
html_ins(children::Any;kwags...)
html_ins(children_maker::Function;kwags...)

Ins is a wrapper for the <ins> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ins

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • cite - Contains a URI which points to the source of the quote or change.
  • dateTime - Indicates the date and time associated with the element.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_isindexFunction
html_isindex(;kwags...)
html_isindex(children::Any;kwags...)
html_isindex(children_maker::Function;kwags...)

Isindex is a wrapper for the <isindex> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/isindex

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_kbdFunction
html_kbd(;kwags...)
html_kbd(children::Any;kwags...)
html_kbd(children_maker::Function;kwags...)

Kbd is a wrapper for the <kbd> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/kbd

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_keygenFunction
html_keygen(;kwags...)
html_keygen(children::Any;kwags...)
html_keygen(children_maker::Function;kwags...)

Keygen is a wrapper for the <keygen> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/keygen

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • autoFocus - The element should be automatically focused after the page loaded.
  • challenge - A challenge string that is submitted along with the public key.
  • disabled - Indicates whether the user can interact with the element.
  • form - Indicates the form that is the owner of the element.
  • keyType - Specifies the type of key generated.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_labelFunction
html_label(;kwags...)
html_label(children::Any;kwags...)
html_label(children_maker::Function;kwags...)

Label is a wrapper for the <label> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • htmlFor - Describes elements which belongs to this one.
  • form - Indicates the form that is the owner of the element.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_legendFunction
html_legend(;kwags...)
html_legend(children::Any;kwags...)
html_legend(children_maker::Function;kwags...)

Legend is a wrapper for the <legend> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/legend

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_liFunction
html_li(;kwags...)
html_li(children::Any;kwags...)
html_li(children_maker::Function;kwags...)

Li is a wrapper for the <li> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/li

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • value - Defines a default value which will be displayed in the element on page load.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_linkFunction
html_link(;kwags...)
html_link(children::Any;kwags...)
html_link(children_maker::Function;kwags...)

Link is a wrapper for the <link> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/link

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • crossOrigin - How the element handles cross-origin requests
  • href - The URL of a linked resource.
  • hrefLang - Specifies the language of the linked resource.
  • integrity - Specifies a Subresource Integrity value that allows browsers to verify what they fetch.
  • media - Specifies a hint of the media for which the linked resource was designed.
  • rel - Specifies the relationship of the target object to the link object.
  • sizes -
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_listingFunction
html_listing(;kwags...)
html_listing(children::Any;kwags...)
html_listing(children_maker::Function;kwags...)

Listing is a wrapper for the <listing> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/listing

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_mainFunction
html_main(;kwags...)
html_main(children::Any;kwags...)
html_main(children_maker::Function;kwags...)

Main is a wrapper for the <main> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/main

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_mapelFunction
html_mapel(;kwags...)
html_mapel(children::Any;kwags...)
html_mapel(children_maker::Function;kwags...)

MapEl is a wrapper for the <map> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/map

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_markFunction
html_mark(;kwags...)
html_mark(children::Any;kwags...)
html_mark(children_maker::Function;kwags...)

Mark is a wrapper for the <mark> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/mark

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_marqueeFunction
html_marquee(;kwags...)
html_marquee(children::Any;kwags...)
html_marquee(children_maker::Function;kwags...)

Marquee is a wrapper for the <marquee> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • loop - Indicates whether the media should start playing from the start when it's finished.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_metaFunction
html_meta(;kwags...)
html_meta(children::Any;kwags...)
html_meta(children_maker::Function;kwags...)

Meta is a wrapper for the <meta> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • charSet - Declares the character encoding of the page or script.
  • content - A value associated with http-equiv or name depending on the context.
  • httpEquiv - Defines a pragma directive.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_meterFunction
html_meter(;kwags...)
html_meter(children::Any;kwags...)
html_meter(children_maker::Function;kwags...)

Meter is a wrapper for the <meter> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meter

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • form - Indicates the form that is the owner of the element.
  • high - Indicates the lower bound of the upper range.
  • low - Indicates the upper bound of the lower range.
  • max - Indicates the maximum value allowed.
  • min - Indicates the minimum value allowed.
  • optimum - Indicates the optimal numeric value.
  • value - Defines a default value which will be displayed in the element on page load.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_multicolFunction
html_multicol(;kwags...)
html_multicol(children::Any;kwags...)
html_multicol(children_maker::Function;kwags...)

Multicol is a wrapper for the <multicol> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/multicol

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_navFunction
html_nav(;kwags...)
html_nav(children::Any;kwags...)
html_nav(children_maker::Function;kwags...)

Nav is a wrapper for the <nav> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nav

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_nextidFunction
html_nextid(;kwags...)
html_nextid(children::Any;kwags...)
html_nextid(children_maker::Function;kwags...)

Nextid is a wrapper for the <nextid> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nextid

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_nobrFunction
html_nobr(;kwags...)
html_nobr(children::Any;kwags...)
html_nobr(children_maker::Function;kwags...)

Nobr is a wrapper for the <nobr> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/nobr

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_noscriptFunction
html_noscript(;kwags...)
html_noscript(children::Any;kwags...)
html_noscript(children_maker::Function;kwags...)

Noscript is a wrapper for the <noscript> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/noscript

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_objectelFunction
html_objectel(;kwags...)
html_objectel(children::Any;kwags...)
html_objectel(children_maker::Function;kwags...)

ObjectEl is a wrapper for the <object> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/object

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • form - Indicates the form that is the owner of the element.
  • height - Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as <div>, this is a legacy attribute, in which case the CSS height property should be used instead.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • type - Defines the type of the element.
  • useMap -
  • width - For the elements listed here, this establishes the element's width. Note: For all other instances, such as <div>, this is a legacy attribute, in which case the CSS width property should be used instead.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_olFunction
html_ol(;kwags...)
html_ol(children::Any;kwags...)
html_ol(children_maker::Function;kwags...)

Ol is a wrapper for the <ol> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • reversed - Indicates whether the list should be displayed in a descending order instead of a ascending.
  • start - Defines the first number if other than 1.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_optgroupFunction
html_optgroup(;kwags...)
html_optgroup(children::Any;kwags...)
html_optgroup(children_maker::Function;kwags...)

Optgroup is a wrapper for the <optgroup> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • disabled - Indicates whether the user can interact with the element.
  • label - Specifies a user-readable title of the element.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_optionFunction
html_option(;kwags...)
html_option(children::Any;kwags...)
html_option(children_maker::Function;kwags...)

Option is a wrapper for the <option> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/option

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • disabled - Indicates whether the user can interact with the element.
  • label - Specifies a user-readable title of the element.
  • selected - Defines a value which will be selected on page load.
  • value - Defines a default value which will be displayed in the element on page load.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_outputFunction
html_output(;kwags...)
html_output(children::Any;kwags...)
html_output(children_maker::Function;kwags...)

Output is a wrapper for the <output> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • htmlFor - Describes elements which belongs to this one.
  • form - Indicates the form that is the owner of the element.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_pFunction
html_p(;kwags...)
html_p(children::Any;kwags...)
html_p(children_maker::Function;kwags...)

P is a wrapper for the <p> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/p

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_paramFunction
html_param(;kwags...)
html_param(children::Any;kwags...)
html_param(children_maker::Function;kwags...)

Param is a wrapper for the <param> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/param

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • value - Defines a default value which will be displayed in the element on page load.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_pictureFunction
html_picture(;kwags...)
html_picture(children::Any;kwags...)
html_picture(children_maker::Function;kwags...)

Picture is a wrapper for the <picture> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/picture

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_plaintextFunction
html_plaintext(;kwags...)
html_plaintext(children::Any;kwags...)
html_plaintext(children_maker::Function;kwags...)

Plaintext is a wrapper for the <plaintext> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/plaintext

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_preFunction
html_pre(;kwags...)
html_pre(children::Any;kwags...)
html_pre(children_maker::Function;kwags...)

Pre is a wrapper for the <pre> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/pre

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_progressFunction
html_progress(;kwags...)
html_progress(children::Any;kwags...)
html_progress(children_maker::Function;kwags...)

Progress is a wrapper for the <progress> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • form - Indicates the form that is the owner of the element.
  • max - Indicates the maximum value allowed.
  • value - Defines a default value which will be displayed in the element on page load.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_qFunction
html_q(;kwags...)
html_q(children::Any;kwags...)
html_q(children_maker::Function;kwags...)

Q is a wrapper for the <q> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/q

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • cite - Contains a URI which points to the source of the quote or change.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_rbFunction
html_rb(;kwags...)
html_rb(children::Any;kwags...)
html_rb(children_maker::Function;kwags...)

Rb is a wrapper for the <rb> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rb

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_rpFunction
html_rp(;kwags...)
html_rp(children::Any;kwags...)
html_rp(children_maker::Function;kwags...)

Rp is a wrapper for the <rp> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rp

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_rtFunction
html_rt(;kwags...)
html_rt(children::Any;kwags...)
html_rt(children_maker::Function;kwags...)

Rt is a wrapper for the <rt> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rt

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_rtcFunction
html_rtc(;kwags...)
html_rtc(children::Any;kwags...)
html_rtc(children_maker::Function;kwags...)

Rtc is a wrapper for the <rtc> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/rtc

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_rubyFunction
html_ruby(;kwags...)
html_ruby(children::Any;kwags...)
html_ruby(children_maker::Function;kwags...)

Ruby is a wrapper for the <ruby> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ruby

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_sFunction
html_s(;kwags...)
html_s(children::Any;kwags...)
html_s(children_maker::Function;kwags...)

S is a wrapper for the <s> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/s

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_sampFunction
html_samp(;kwags...)
html_samp(children::Any;kwags...)
html_samp(children_maker::Function;kwags...)

Samp is a wrapper for the <samp> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/samp

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_scriptFunction
html_script(;kwags...)
html_script(children::Any;kwags...)
html_script(children_maker::Function;kwags...)

Script is a wrapper for the <script> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • async - Indicates that the script should be executed asynchronously.
  • charSet - Declares the character encoding of the page or script.
  • crossOrigin - How the element handles cross-origin requests
  • defer - Indicates that the script should be executed after the page has been parsed.
  • integrity - Specifies a Subresource Integrity value that allows browsers to verify what they fetch.
  • src - The URL of the embeddable content.
  • type - Defines the type of the element.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_sectionFunction
html_section(;kwags...)
html_section(children::Any;kwags...)
html_section(children_maker::Function;kwags...)

Section is a wrapper for the <section> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/section

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_selectFunction
html_select(;kwags...)
html_select(children::Any;kwags...)
html_select(children_maker::Function;kwags...)

Select is a wrapper for the <select> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/select

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • autoComplete - Indicates whether controls in this form can by default have their values automatically completed by the browser.
  • autoFocus - The element should be automatically focused after the page loaded.
  • disabled - Indicates whether the user can interact with the element.
  • form - Indicates the form that is the owner of the element.
  • multiple - Indicates whether multiple values can be entered in an input of the type email or file.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • required - Indicates whether this element is required to fill out or not.
  • size - Defines the width of the element (in pixels). If the element's type attribute is text or password then it's the number of characters.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_shadowFunction
html_shadow(;kwags...)
html_shadow(children::Any;kwags...)
html_shadow(children_maker::Function;kwags...)

Shadow is a wrapper for the <shadow> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/shadow

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_slotFunction
html_slot(;kwags...)
html_slot(children::Any;kwags...)
html_slot(children_maker::Function;kwags...)

Slot is a wrapper for the <slot> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/slot

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_smallFunction
html_small(;kwags...)
html_small(children::Any;kwags...)
html_small(children_maker::Function;kwags...)

Small is a wrapper for the <small> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/small

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_sourceFunction
html_source(;kwags...)
html_source(children::Any;kwags...)
html_source(children_maker::Function;kwags...)

Source is a wrapper for the <source> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/source

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • media - Specifies a hint of the media for which the linked resource was designed.
  • sizes -
  • src - The URL of the embeddable content.
  • srcSet - One or more responsive image candidates.
  • type - Defines the type of the element.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_spacerFunction
html_spacer(;kwags...)
html_spacer(children::Any;kwags...)
html_spacer(children_maker::Function;kwags...)

Spacer is a wrapper for the <spacer> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/spacer

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_spanFunction
html_span(;kwags...)
html_span(children::Any;kwags...)
html_span(children_maker::Function;kwags...)

Span is a wrapper for the <span> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/span

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_strikeFunction
html_strike(;kwags...)
html_strike(children::Any;kwags...)
html_strike(children_maker::Function;kwags...)

Strike is a wrapper for the <strike> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strike

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_strongFunction
html_strong(;kwags...)
html_strong(children::Any;kwags...)
html_strong(children_maker::Function;kwags...)

Strong is a wrapper for the <strong> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/strong

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_subFunction
html_sub(;kwags...)
html_sub(children::Any;kwags...)
html_sub(children_maker::Function;kwags...)

Sub is a wrapper for the <sub> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sub

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_summaryFunction
html_summary(;kwags...)
html_summary(children::Any;kwags...)
html_summary(children_maker::Function;kwags...)

Summary is a wrapper for the <summary> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/summary

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_supFunction
html_sup(;kwags...)
html_sup(children::Any;kwags...)
html_sup(children_maker::Function;kwags...)

Sup is a wrapper for the <sup> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/sup

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_tableFunction
html_table(;kwags...)
html_table(children::Any;kwags...)
html_table(children_maker::Function;kwags...)

Table is a wrapper for the <table> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/table

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • summary -
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_tbodyFunction
html_tbody(;kwags...)
html_tbody(children::Any;kwags...)
html_tbody(children_maker::Function;kwags...)

Tbody is a wrapper for the <tbody> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tbody

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_tdFunction
html_td(;kwags...)
html_td(children::Any;kwags...)
html_td(children_maker::Function;kwags...)

Td is a wrapper for the <td> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/td

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • colSpan - The colspan attribute defines the number of columns a cell should span.
  • headers - IDs of the <th> elements which applies to this element.
  • rowSpan - Defines the number of rows a table cell should span over.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_templateFunction
html_template(;kwags...)
html_template(children::Any;kwags...)
html_template(children_maker::Function;kwags...)

Template is a wrapper for the <template> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/template

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_textareaFunction
html_textarea(;kwags...)
html_textarea(children::Any;kwags...)
html_textarea(children_maker::Function;kwags...)

Textarea is a wrapper for the <textarea> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/textarea

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • autoComplete - Indicates whether controls in this form can by default have their values automatically completed by the browser.
  • autoFocus - The element should be automatically focused after the page loaded.
  • cols - Defines the number of columns in a textarea.
  • disabled - Indicates whether the user can interact with the element.
  • form - Indicates the form that is the owner of the element.
  • inputMode - Provides a hint as to the type of data that might be entered by the user while editing the element or its contents. The attribute can be used with form controls (such as the value of textarea elements), or in elements in an editing host (e.g., using contenteditable attribute).
  • maxLength - Defines the maximum number of characters allowed in the element.
  • minLength - Defines the minimum number of characters allowed in the element.
  • name - Name of the element. For example used by the server to identify the fields in form submits.
  • placeholder - Provides a hint to the user of what can be entered in the field.
  • readOnly - Indicates whether the element can be edited.
  • required - Indicates whether this element is required to fill out or not.
  • rows - Defines the number of rows in a text area.
  • wrap - Indicates whether the text should be wrapped.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_tfootFunction
html_tfoot(;kwags...)
html_tfoot(children::Any;kwags...)
html_tfoot(children_maker::Function;kwags...)

Tfoot is a wrapper for the <tfoot> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tfoot

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_thFunction
html_th(;kwags...)
html_th(children::Any;kwags...)
html_th(children_maker::Function;kwags...)

Th is a wrapper for the <th> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/th

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • colSpan - The colspan attribute defines the number of columns a cell should span.
  • headers - IDs of the <th> elements which applies to this element.
  • rowSpan - Defines the number of rows a table cell should span over.
  • scope - Defines the cells that the header test (defined in the th element) relates to.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_theadFunction
html_thead(;kwags...)
html_thead(children::Any;kwags...)
html_thead(children_maker::Function;kwags...)

Thead is a wrapper for the <thead> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/thead

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_timeFunction
html_time(;kwags...)
html_time(children::Any;kwags...)
html_time(children_maker::Function;kwags...)

Time is a wrapper for the <time> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/time

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • dateTime - Indicates the date and time associated with the element.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_titleFunction
html_title(;kwags...)
html_title(children::Any;kwags...)
html_title(children_maker::Function;kwags...)

Title is a wrapper for the <title> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/title

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_trFunction
html_tr(;kwags...)
html_tr(children::Any;kwags...)
html_tr(children_maker::Function;kwags...)

Tr is a wrapper for the <tr> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/tr

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_trackFunction
html_track(;kwags...)
html_track(children::Any;kwags...)
html_track(children_maker::Function;kwags...)

Track is a wrapper for the <track> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • default - Indicates that the track should be enabled unless the user's preferences indicate something different.
  • kind - Specifies the kind of text track.
  • label - Specifies a user-readable title of the element.
  • src - The URL of the embeddable content.
  • srcLang -
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_uFunction
html_u(;kwags...)
html_u(children::Any;kwags...)
html_u(children_maker::Function;kwags...)

U is a wrapper for the <u> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/u

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_ulFunction
html_ul(;kwags...)
html_ul(children::Any;kwags...)
html_ul(children_maker::Function;kwags...)

Ul is a wrapper for the <ul> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ul

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_varFunction
html_var(;kwags...)
html_var(children::Any;kwags...)
html_var(children_maker::Function;kwags...)

Var is a wrapper for the <var> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/var

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_videoFunction
html_video(;kwags...)
html_video(children::Any;kwags...)
html_video(children_maker::Function;kwags...)

Video is a wrapper for the <video> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/video

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • autoPlay - The audio or video should play as soon as possible.
  • controls - Indicates whether the browser should show playback controls to the user.
  • crossOrigin - How the element handles cross-origin requests
  • height - Specifies the height of elements listed here. For all other elements, use the CSS height property. Note: In some instances, such as <div>, this is a legacy attribute, in which case the CSS height property should be used instead.
  • loop - Indicates whether the media should start playing from the start when it's finished.
  • muted - Indicates whether the audio will be initially silenced on page load.
  • poster - A URL indicating a poster frame to show until the user plays or seeks.
  • preload - Indicates whether the whole resource, parts of it or nothing should be preloaded.
  • src - The URL of the embeddable content.
  • width - For the elements listed here, this establishes the element's width. Note: For all other instances, such as <div>, this is a legacy attribute, in which case the CSS width property should be used instead.
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_wbrFunction
html_wbr(;kwags...)
html_wbr(children::Any;kwags...)
html_wbr(children_maker::Function;kwags...)

Wbr is a wrapper for the <wbr> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/wbr

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.html_xmpFunction
html_xmp(;kwags...)
html_xmp(children::Any;kwags...)
html_xmp(children_maker::Function;kwags...)

Xmp is a wrapper for the <xmp> HTML5 element. For detailed attribute info see: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/xmp

Arguments

  • id - The ID of this component, used to identify dash components

in callbacks. The ID needs to be unique across all of the components in an app.

  • children - The children of this component
  • n_clicks - An integer that represents the number of times

that this element has been clicked on.

  • n_clicks_timestamp - An integer that represents the time (in ms since 1970)

at which n_clicks changed. This can be used to tell which button was changed most recently.

  • key - A unique identifier for the component, used to improve

performance by React.js while rendering components See https://reactjs.org/docs/lists-and-keys.html for more info

  • role - The ARIA role attribute
  • accessKey - Defines a keyboard shortcut to activate or add focus to the element.
  • className - Often used with CSS to style elements with common properties.
  • contentEditable - Indicates whether the element's content is editable.
  • contextMenu - Defines the ID of a <menu> element which will serve as the element's context menu.
  • dir - Defines the text direction. Allowed values are ltr (Left-To-Right) or rtl (Right-To-Left)
  • draggable - Defines whether the element can be dragged.
  • hidden - Prevents rendering of given element, while keeping child elements, e.g. script elements, active.
  • lang - Defines the language used in the element.
  • spellCheck - Indicates whether spell checking is allowed for the element.
  • style - Defines CSS styles which will override styles previously set.
  • tabIndex - Overrides the browser's default tab order and follows the one specified instead.
  • title - Text to be displayed in a tooltip when hovering over the element.
  • loading_state - Object that holds the loading state object coming from dash-renderer
Dashboards.make_handlerMethod
make_handler(app::Dash; debug = false)

Make handler for routing Dash application in HTTP package

#Arguments

  • app::Dash - Dash application
  • debug::Bool = false - Enable/disable all the dev tools

#Examples

julia> app = Dash("Test") do
    html_div() do
        html_h1("Test Dashboard")
    end
end
julia> handler = make_handler(app)
julia> HTTP.serve(handler, HTTP.Sockets.localhost, 8080)
Dashboards.@callid_strMacro
@callid_str"

Macro for crating Dash CallbackId. Parse string in form "[{State1[, ...]}] Input1[, ...] => Output1[, ...]"

#Examples

    id1 = callid"{inputDiv.children} input.value => output1.value, output2.value"