dash-core-components icon indicating copy to clipboard operation
dash-core-components copied to clipboard

OBSOLETE: now part of https://github.com/plotly/dash

Results 112 dash-core-components issues
Sort by recently updated
recently updated
newest added

Consider a set of components that update the URL, like a dropdown allowing the user to change websites or radio items allowing users to change units from metric to imperial....

Is there currently an API that registers a single click on a Graph and sends coordinate information back to the server? I would like to implement a feature where I...

I have a `DatePickerSingle` with a range from Feb 1 2020 to "today". We have a daily job that runs and sometimes we save the output -- I want to...

This would allow downloading a specific version of a PR branch by first `wget`ting the tarball and installing it locally. This would avoid having to clone the repo, checkout to...

When I create my slider marks like this: ` marks={ 10.0: '10.00%', 25.0: '25.00%', 50.0: '50.00%', 75.0: '75.00%', 100.0: '100.00%' } ` the slider labels will not show up. I...

## Geolocation The Geolocation component uses the [Geolocation API](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation_API). This will cause the user's browser to ask for permission to access location data. If they accept, then the browser will...

## dcc.Timer() The new Timer component is a response to the discussion in [#857](https://github.com/plotly/dash-core-components/issues/857). `dcc.Timer` is based on the `dcc.Interval` component. It has all the functionality of `dcc.Interval` plus these...

See discussion here: https://community.plotly.com/t/dash-dropdown-select-multi-keep-options-open-after-selection/34576

From community issue https://community.plot.ly/t/loading-state-argument-in-dcc-loading/31936 - Probably requires https://github.com/plotly/dash/issues/893 to be fixed - As part of this issue, we would want to hide `loading_state` from the generated API for the components...

dash-type-enhancement

The `Input` component can be cleared by setting the value to `None` in a callback. This doesn't work if the current value of the input is invalid. Here's a simple...