|
38 | 38 | - [Lets-Plot in JVM-based application](#jvm)
|
39 | 39 |
|
40 | 40 | - [Lets-Plot Kotlin API](#api)
|
41 |
| - - [User guide and API reference](#guide) |
42 |
| - - [Data sampling](#sampling) |
43 |
| - - [GGBunch](#ggbunch) |
44 |
| - - [Saving plot to file](#export) |
45 |
| - - [Tooltip customization](#tooltip-customization) |
46 |
| - - [GeoTools support](#geotools) |
47 |
| - |
48 |
| -- [What is new in 1.1.0](#new) |
| 41 | + - [User guide and API reference](#guide) |
| 42 | + - [Data sampling](#sampling) |
| 43 | + - [GGBunch](#ggbunch) |
| 44 | + - [Saving plot to file](#export) |
| 45 | + - [Tooltip customization](#tooltip-customization) |
| 46 | + - [GeoTools support](#geotools) |
| 47 | + |
| 48 | +- [What is new in 1.2.0](#new) |
49 | 49 | - [Change log](#change_log)
|
50 | 50 | - [License](#license)
|
51 | 51 |
|
@@ -235,32 +235,50 @@ Learn more: [Tooltip Customization](https://github.com/JetBrains/lets-plot-kotli
|
235 | 235 |
|
236 | 236 | [GeoTools](https://www.geotools.org/) is an open source Java GIS Toolkit.
|
237 | 237 |
|
238 |
| -Lets-Plot supports visualization of a set of `SimpleFeature`-s stored in `SimpleFeatureCollection`, as well as |
239 |
| -individual `Geometry` and `ReferencedEnvelope` objects. |
| 238 | +Lets-Plot supports visualization of a set of `SimpleFeature`-s stored in `SimpleFeatureCollection`, as well as |
| 239 | +individual `Geometry` and `ReferencedEnvelope` objects. |
240 | 240 |
|
241 | 241 | Learn more: [GeoTools Support](https://github.com/JetBrains/lets-plot-kotlin/blob/master/docs/geotools.md).
|
242 |
| - |
243 | 242 |
|
244 | 243 | <a id="new"></a>
|
245 |
| -## What is new in 1.1.0 |
246 | 244 |
|
247 |
| -- Tooltip Customization |
| 245 | +## What is new in 1.2.0 |
| 246 | + |
| 247 | +- Correlation plot builder. |
| 248 | + |
| 249 | + Usage: |
| 250 | + ```kotlin |
| 251 | + import jetbrains.letsPlot.bistro.corr.CorrPlot |
| 252 | + |
| 253 | + val plot = CorrPlot(data, title = "threshold = 0.5, no diag", threshold = 0.5) // data and optional parameters |
| 254 | + .points(type = "upper", diag = true) // Add one or more layers |
| 255 | + .build() // Finally, build the plot |
| 256 | + ``` |
| 257 | + |
| 258 | + Example: [correlation_plot.ipynb](https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/correlation_plot.ipynb) |
| 259 | + |
248 | 260 |
|
249 |
| - New API for customization of tooltip contents. See [Tooltip Customization](https://github.com/JetBrains/lets-plot-kotlin/blob/master/docs/tooltips.md)) for details. |
250 |
| - |
251 |
| -- Formatting labels in `geom_text()` |
| 261 | +- The `gggrid()` plot layout utility |
252 | 262 |
|
253 |
| - New parameter, 'labelFormat' to define a formatting pattern. |
| 263 | + Arranges plots in cells of a regular grid. |
254 | 264 |
|
255 |
| - See demo: [label_format.ipynb](https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/label_format.ipynb) |
256 |
| - |
257 |
| -- GeoTools support |
| 265 | + Example: [correlation_plot.ipynb](https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/correlation_plot.ipynb) |
258 | 266 |
|
259 |
| - Visualization of GeoTools's `SimpleFeature`-s and other objects. See [GeoTools Support](https://github.com/JetBrains/lets-plot-kotlin/blob/master/docs/geotools.md)) for details. |
260 | 267 |
|
261 |
| -- Other changes and fixes - see [CHANGELOG.md](https://github.com/JetBrains/lets-plot-kotlin/blob/master/CHANGELOG.md) for details. |
| 268 | +- Tooltip Customization API |
| 269 | + - new options: `center` and `middle` (anchor). |
| 270 | + - new option `minWidth`. |
| 271 | + |
| 272 | + See [Tooltip Customization](https://github.com/JetBrains/lets-plot-kotlin/blob/master/docs/tooltips.md) for details. |
| 273 | + |
| 274 | + Example: [tooltip_config.ipynb](https://nbviewer.jupyter.org/github/JetBrains/lets-plot-kotlin/blob/master/docs/examples/jupyter-notebooks/tooltip_config.ipynb) |
| 275 | + |
| 276 | + |
| 277 | +- Other changes and fixes - see [CHANGELOG.md](https://github.com/JetBrains/lets-plot-kotlin/blob/master/CHANGELOG.md) |
| 278 | + for details. |
262 | 279 |
|
263 | 280 | <a id="change_log"></a>
|
| 281 | + |
264 | 282 | ## Change Log
|
265 | 283 |
|
266 | 284 | See [CHANGELOG.md](https://github.com/JetBrains/lets-plot-kotlin/blob/master/CHANGELOG.md).
|
|
0 commit comments