1
0
forked from pool/python-plotly

Accepting request 845114 from home:apersaud:branches:devel:languages:python:numeric

update to latest version

OBS-URL: https://build.opensuse.org/request/show/845114
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-plotly?expand=0&rev=39
This commit is contained in:
2020-11-02 15:26:46 +00:00
committed by Git OBS Bridge
parent b640271515
commit 058f5e0b02
4 changed files with 34 additions and 4 deletions

View File

@@ -1,3 +1,33 @@
-------------------------------------------------------------------
Fri Oct 30 22:32:20 UTC 2020 - Arun Persaud <arun@gmx.de>
- update to version 4.12.0:
* Added
+ For add_trace, add_shape, add_annotation and add_layout_image,
the row and/or col argument now also accept the string
"all". row="all" adds the object to all the subplot rows and
col="all" adds the object to all the subplot columns. (#2840)
+ Shapes that reference the plot axes in one dimension and the
data in another dimension can be added with the new add_hline,
add_vline, add_hrect, add_vrect functions, which also support
the row="all" and col="all" arguments. (#2840)
+ The add_trace, add_shape, add_annotation, add_layout_image,
add_hline, add_vline, add_hrect, add_vrect functions accept an
argument exclude_empty_subplots which if True, only adds the
object to subplots already containing traces or layout
objects. This is useful in conjunction with the row="all" and
col="all" arguments. (#2840)
+ For all go.Figure functions accepting a selector argument (e.g.,
select_traces), this argument can now also be a function which
is passed each relevant graph object (in the case of
select_traces, it is passed every trace in the figure). For
graph objects where this function returns true, the graph object
is included in the selection. (#2844)
* Updated
+ Updated Plotly.js to version 1.57.1. See the plotly.js CHANGELOG
for more information. These changes are reflected in the
auto-generated plotly.graph_objects module.
-------------------------------------------------------------------
Sat Oct 10 19:07:17 UTC 2020 - Arun Persaud <arun@gmx.de>