8000 Tags · facultyai/scala-plotly-client · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: facultyai/scala-plotly-client

Tags

0.2.0

Toggle 0.2.0's commit message
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.

v0.1

Toggle v0.1's commit message
Initial public release.

Adds basic plotting abilities, mostly scatter plots. Already supports complex layouts with subplots.
0