Noob Question: Docs - Where can I find valid parameter values

Hi,

I would like to know where I can find information on valid/possible values for specific parameters. In the docs these values are sometimes specified but for text wrapping I could only find this:

dash_table.DataTable(
style_cell={
‘whiteSpace’: ‘normal’,

→ WHAT OTHER VALUES THAN ‘normal’ are possible?

Is there some kind of documentation I did not find or where can I find information like that?

Thanks
dash_noob

Anything related to styling is probably a CSS property. MDN is a great resource for this kind of thing, see here for white-space

Note that styles specified in Dash are camelCase as because that is the convention in React on which Dash is built, rather than kebab-case which is conventional in CSS. So white-space becomes whiteSpace.

Perfect, thanks tcbegley!

1 Like