Tags: facultyai/scala-plotly-client
Tags
Add surface plots and change figure / plot interaction This release adds: - the ability to draw 3D surface plots - the ability to have plots of mixed type (eg. 3D and 2D plots) on the same figure. This introduces breaking changes with respect to release 0.1.0. Previously, layout options were set with: ```scala Plot().layout(RowLayout(2, options)) ``` Now, layout options are set on the figure directly: ```scala RowFigure(2).margins(0, 0, 0, 0) ``` Conceptually, what used to be `Plot` objects is now `Figure`. The new `Plot` object refers to a subplot.