A tooltip with an absolute position.
dccTooltip(children=NULL, id=NULL, className=NULL, style=NULL,
bbox=NULL, show=NULL, direction=NULL, border_color=NULL,
background_color=NULL, loading_text=NULL, zindex=NULL,
targetable=NULL, loading_state=NULL)
A list of or a singular dash component, string or number. The contents of the tooltip
Character. 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.
Character. The class of the tooltip
Named list. The style of the tooltip
Lists containing elements 'x0', 'y0', 'x1', 'y1'. those elements have the following types: - x0 (numeric; optional) - y0 (numeric; optional) - x1 (numeric; optional) - y1 (numeric; optional). The bounding box coordinates of the item to label, in px relative to the positioning parent of the Tooltip component.
Logical. Whether to show the tooltip
A value equal to: 'top', 'right', 'bottom', 'left'. The side of the `bbox` on which the tooltip should open.
Character. Color of the tooltip border, as a CSS color string.
Character. Color of the tooltip background, as a CSS color string.
Character. The text displayed in the tooltip while loading
Numeric. The `z-index` CSS property to assign to the tooltip. Components with higher values will be displayed on top of components with lower values.
Logical. Whether the tooltip itself can be targeted by pointer events. For tooltips triggered by hover events, typically this should be left `false` to avoid the tooltip interfering with those same events.
Lists containing elements 'is_loading', 'prop_name', 'component_name'. those elements have the following types: - is_loading (logical; optional): determines if the component is loading or not - prop_name (character; optional): holds which property is loading - component_name (character; optional): holds the name of the component that is loading. Object that holds the loading state object coming from dash-renderer
named list of JSON elements corresponding to React.js properties and their values