From bf65bca6cc9b5d7436d467a25607857f1ef97a68 Mon Sep 17 00:00:00 2001 From: Uriah Finkel Date: Wed, 12 Nov 2025 14:19:56 +0200 Subject: [PATCH 1/2] fix: try to move white margins from the plotly plots --- src/rtichoke/helpers/plotly_helper_functions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/rtichoke/helpers/plotly_helper_functions.py b/src/rtichoke/helpers/plotly_helper_functions.py index eb051a9..83b6e08 100644 --- a/src/rtichoke/helpers/plotly_helper_functions.py +++ b/src/rtichoke/helpers/plotly_helper_functions.py @@ -1183,6 +1183,7 @@ def _create_curve_layout( curve_layout = { "xaxis": {"showgrid": False}, "yaxis": {"showgrid": False}, + "template": "none", "plot_bgcolor": "rgba(0, 0, 0, 0)", "paper_bgcolor": "rgba(0, 0, 0, 0)", "showlegend": True, @@ -1197,6 +1198,7 @@ def _create_curve_layout( }, "height": size + 50, "width": size, + "hoverlabel": {"bgcolor": "rgba(0,0,0,0)", "bordercolor": "rgba(0,0,0,0)"}, "updatemenus": [ { "type": "buttons", From 99ff20731bde4c31c3f15d8c65b81170e8d2be3a Mon Sep 17 00:00:00 2001 From: Uriah Finkel Date: Wed, 12 Nov 2025 14:25:36 +0200 Subject: [PATCH 2/2] build: update version --- pyproject.toml | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 14366e6..31b1276 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,7 +21,7 @@ dependencies = [ "polarstate==0.1.8", ] name = "rtichoke" -version = "0.1.15" +version = "0.1.16" description = "interactive visualizations for performance of predictive models" readme = "README.md" diff --git a/uv.lock b/uv.lock index 4218adc..8b65a54 100644 --- a/uv.lock +++ b/uv.lock @@ -4054,7 +4054,7 @@ wheels = [ [[package]] name = "rtichoke" -version = "0.1.15" +version = "0.1.16" source = { editable = "." } dependencies = [ { name = "importlib" },