We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ac1c0e commit 823bfa9Copy full SHA for 823bfa9
CHANGELOG.md
@@ -1,3 +1,8 @@
1
+# 0.4
2
+
3
+* Use `Plotly.newPlot()` instead of `Plotly.restyle()` because I cannot get restyle() to work with plots that contain
4
+multiple traces
5
6
# 0.3
7
8
* the HTMX swap mechanism works once more as expected: this extension now receives an *object* from the server, which
server.py
@@ -20,7 +20,7 @@ def getData():
20
x = irisScatter1()
21
22
w = plotlyToJSON(x, '<b>It wOrKs</b>')
23
- print(f'.restyle data: {w}')
+ # print(f'.restyle data: {w}')
24
return make_response(w)
25
26
if __name__ == "__main__":
0 commit comments