Exploring other Dash components
We covered the basic Dash components and there are many others available. Keep in mind that there are three possible approaches here:
- Go deeper into components you know: Although we covered many components, there is always more to explore – more options to learn, use, and gain experience in. You probably want to go deeper into
dash_table
, which can offer quite complex functionality and spreadsheet-style options. - Explore other Dash components: There are several other components that we didn't cover that could enhance your apps. Two of those are
DatePickerSingle
andDatePickerRange
, which are self-explanatory. TheInterval
component allows you to execute code whenever a certain period of time elapses. TheStore
component allows you to store data in the user's browser, in case you want to save some data to enhance the usability/functionality of your apps. There is also anUpload
component for uploading files. These are all...