plotly v3.2.1 Release Notes

Release Date: 2018-09-14 // over 5 years ago
  • ๐Ÿš€ This is a patch release that fixes a few bugs and reintroduces a few ๐Ÿ”– version 2 features that were not supported in version 3.

    The bundled version of plotly.js remains at 1.40.1

    JupyterLab Versions

    ๐Ÿ“ฆ For use with JupyterLab, the following versions of the following packages must be installed:

    โž• Added

    • An optional skip_invalid argument has been added to the Figure and FigureWidget constructors. By default, skip_invalid is False and invalid figure properties will result in an exception (this is identical to the previous behavior). When skip_invalid is set to True, invalid properties will instead be silently ignored. This argument replaces the _raise argument that was available in version 2, and makes it possible to import figure definitions from different plotly versions, where incompatible properties are ignored rather than causing an exception.
    • A to_ordered_dict method has been added to the Figure and FigureWidget classes. This method returns a representation of the figure as a nested structure of OrdererdDict and list instances where the keys in each OrderedDict are sorted alphabetically. This method replaces the get_ordered method that was available in version 2, and makes it possible to traverse the nested structure of a figure in a deterministic order.

    ๐Ÿ›  Fixed