dash-core-components
dash-core-components copied to clipboard
OBSOLETE: now part of https://github.com/plotly/dash
Hello, I am using the `dcc.RangeSlider()` to make a slider to select which dates to display in the chart. Since the `RangeSlider()` only accepts numbers as inputs, and needed to...
It would be really useful to get a core component, such as the upload button to just select a folder. No files directly being uploaded, just getting the path to...
Example: ```python import dash import dash_html_components as html import dash_core_components as dcc external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css'] app = dash.Dash(__name__, external_stylesheets=external_stylesheets) app.layout = html.Div([ dcc.Dropdown( id='my-dropdown', options=[ {'label': 'New York City', 'value':...
With `dash==1.12`, the Dropdown component does not dropup (like `html `) when there is no space below the component. In my setup the component resides within a `dbc.ModalFooter`. If there...
Right now, it's only possible to position a tooltip from the bbox object argument passed to a hover or click callback, which contains screen coordinates. It should be possible to...
Similar to the issue described in #103, I am having trouble with the speed of very long dropdown lists (40k+ items). However, in my case it's not the speed of...
This problem started after I upgraded to dash 1.19.0 (possibly a dash-core-components 1.15.0 issue??) I have an app with multiple tabs, with dash components on them like charts and indicators....
The Graph component allows to display buttons and icon on the top right of any graph. The left most icon is download as PNG, but I could not find any...
Creating a figure with the config = {"toImageButtonOptions": {"format": "svg"}} leads to a svg figure where the text in the legend is truncated.  Compare this to the screenshot: ...
We recently removed support for certain `type` attributes of `dcc.Input` as they don't have good cross browser support (e.g. `type="time"`). Some users want them back: https://community.plot.ly/t/dash-timepicker/6541/6?u=chriddyp Should we bring them...