diff --git a/Writerside/topics/charts.md b/Writerside/topics/charts.md index 0299ee6e..66c2caa7 100644 --- a/Writerside/topics/charts.md +++ b/Writerside/topics/charts.md @@ -58,6 +58,7 @@ Examples: - [Ribbon geometry](%nb-ribbon%) - [How to draw curve fast](%nb-algebraic_curve%) - [`stroke` aesthetic](%nb-aes_stroke%) +- [Configuring nudge units in position adjustments](%nb-position_nudge_unit%) ## Discrete diff --git a/Writerside/topics/presentation_options.md b/Writerside/topics/presentation_options.md index 74eeed33..17eb4dca 100644 --- a/Writerside/topics/presentation_options.md +++ b/Writerside/topics/presentation_options.md @@ -16,14 +16,10 @@ - [Themes overview](%nb-themes%) - [Default theme](%nb-default_theme%) -- [Applying common theme to a plot group](%nb-gggrid_theme%) -- [Plot margins](%nb-theme_plot_margin%) -- [Option to show/hide plot messages](%nb-theme_plot_message%) - [Justification for text elements](%nb-hjust_vjust%) - [Margins](%nb-margins%) - [`margin` parameter of `elementText()`](%nb-text_margins%) - [Panel border](%nb-panel_border%) -- [Tooltip properties in `theme()`](%nb-tooltips_theme%) - [Plot title, subtitle and caption](%nb-title_subtitle_caption%) - [Theme colors for geometries](%nb-geom_theme_colors%) - [Customize legend appearance](%nb-legend_theme%) @@ -52,8 +48,8 @@ ### Predefined Themes Examples - [Default theme](%nb-default_theme%) +- [Themes overview](%nb-themes%) - [Theme flavors](%nb-theme_flavors%) -- [Applying common theme to a plot group](%nb-gggrid_theme%) - [Margins](%nb-margins%) - [`margin` parameter of `elementText()`](%nb-text_margins%) - [Theme colors for geometries](%nb-geom_theme_colors%) @@ -75,6 +71,6 @@ ### Flavors Examples - [Theme flavors](%nb-theme_flavors%) -- [Applying common theme to a plot group](%nb-gggrid_theme%) +- [Themes overview](%nb-themes%) - [Theme colors for geometries](%nb-geom_theme_colors%) - [Annotation labels on pie-chart](%nb-annotations_for_pie%) \ No newline at end of file diff --git a/Writerside/topics/tooltips.md b/Writerside/topics/tooltips.md index fd372917..3ea70d72 100644 --- a/Writerside/topics/tooltips.md +++ b/Writerside/topics/tooltips.md @@ -12,4 +12,4 @@ See also the [formatting reference](formats.md) to learn how to format numeric a - [Tooltip title](%nb-tooltip_title%) - [Tooltip customization](%nb-tooltip_config%) -- [Tooltip properties in `theme()`](%nb-tooltips_theme%) \ No newline at end of file +- [Tooltip properties in `theme()`](%nb-themes%) \ No newline at end of file diff --git a/Writerside/v.list b/Writerside/v.list index d97bfe2d..436b886f 100644 --- a/Writerside/v.list +++ b/Writerside/v.list @@ -1,7 +1,7 @@ - + @@ -84,7 +84,6 @@ - @@ -108,6 +107,7 @@ + @@ -132,13 +132,10 @@ - - - + - \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index ef214faf..9bc9ae5e 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -33,7 +33,7 @@ if (project.file("local.properties").exists()) { allprojects { group = "org.jetbrains.lets-plot" version = when (name) { - "dokka" -> "4.9.3" + "dokka" -> "4.9.4" else -> "4.9.4-SNAPSHOT" // else -> "0.0.0-SNAPSHOT" // for local publishing only } diff --git a/docs/dokka/source/packages.md b/docs/dokka/source/packages.md index 6e9e9a2a..e1095bdb 100644 --- a/docs/dokka/source/packages.md +++ b/docs/dokka/source/packages.md @@ -174,7 +174,7 @@ See [tooltips.html](https://lets-plot.org/kotlin/tooltips.html). - [tooltip_title.ipynb](https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/kotlin_examples/cookbook/tooltip_title.ipynb) -- [tooltips_theme.ipynb](https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/kotlin_examples/cookbook/tooltips_theme.ipynb) +- [themes.ipynb](https://datalore.jetbrains.com/report/static/HZqq77cegYd.E7get_WnChZ/rjq52BpjPak2geihq3ol1h#Tooltips) # Package org.jetbrains.letsPlot.annotations diff --git a/docs/examples/jupyter-notebooks/f-4.10.0/position_nudge_unit.ipynb b/docs/examples/jupyter-notebooks/f-4.10.0/position_nudge_unit.ipynb index 3528e77c..52745c44 100644 --- a/docs/examples/jupyter-notebooks/f-4.10.0/position_nudge_unit.ipynb +++ b/docs/examples/jupyter-notebooks/f-4.10.0/position_nudge_unit.ipynb @@ -7,14 +7,14 @@ "source": [ "# Configuring Nudge Units in Position Adjustments\n", "\n", - "The position adjustment `position_nudge()` now supports the `unit` parameter that specifies the measurement system for nudge offsets.
\n", - "Equivalent parameter is also available as `nudge_unit` in `geom_text()` and `geom_label()` directly. \n", + "The position adjustment `positionNudge()` now supports the `unit` parameter that specifies the measurement system for nudge offsets.
\n", + "Equivalent parameter is also available as `nudgeUnit` in `geomText()` and `geomLabel()` directly. \n", "\n", "Available Units:\n", "\n", - "- `'identity'` (default): nudge in data coordinates - a value of 1 corresponds to the distance from 0 to 1 on the axis\n", - "- `'size'`: nudge relative to point size - a value of 1 corresponds to the diameter of a point with size 1\n", - "- `'px'`: nudge in fixed pixels - a value of 1 corresponds to 1 pixel" + "- `\"identity\"` (default): nudge in data coordinates - a value of 1 corresponds to the distance from 0 to 1 on the axis\n", + "- `\"size\"`: nudge relative to point size - a value of 1 corresponds to the diameter of a point with size 1\n", + "- `\"px\"`: nudge in fixed pixels - a value of 1 corresponds to 1 pixel" ] }, { @@ -26,7 +26,7 @@ { "data": { "text/html": [ - "
\n", + "
\n", " " @@ -77,7 +77,7 @@ { "data": { "text/plain": [ - "Lets-Plot Kotlin API v.hehe. Frontend: Notebook with dynamically loaded JS. Lets-Plot JS v.4.6.0." + "Lets-Plot Kotlin API v.4.6.1. Frontend: Notebook with dynamically loaded JS. Lets-Plot JS v.4.6.1." ] }, "execution_count": 2, @@ -106,7 +106,7 @@ { "data": { "text/html": [ - "
\n", + "
\n", "