Definitive list of dcc functions?

Is there a documented list of all the DCC functions exposed for us to use?

Ian W.

Are you looking for something more than this?
https://plot.ly/dash/dash-core-components

If it is complete, that would be all we could ask for. However, dcc.link (seen in some example code) isn’t mentioned there, so I wonder how much else is available for use.

Yeah, dcc.Link isn’t there. You can call dir(dcc) to get a full list in your console. Here are the available components (as of version 0.13.0):

In [3]: dir(dcc)
Out[3]:
['Checklist',
 'DatePickerRange',
 'DatePickerSingle',
 'Dropdown',
 'Graph',
 'Input',
 'Interval',
 'Link',
 'Location',
 'Markdown',
 'RadioItems',
 'RangeSlider',
 'Slider',
 'SyntaxHighlighter',
 'Textarea',
```
1 Like