From 9adf83ec7456f9a334a966f36a1507822360e95e Mon Sep 17 00:00:00 2001 From: Ivan Usov Date: Fri, 12 Nov 2021 17:04:13 +0100 Subject: [PATCH] Minor visual tweaks --- pyzebra/app/panel_ccl_compare.py | 6 +++--- pyzebra/app/panel_ccl_integrate.py | 2 +- pyzebra/app/panel_param_study.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyzebra/app/panel_ccl_compare.py b/pyzebra/app/panel_ccl_compare.py index 59da1ab..2d920e2 100644 --- a/pyzebra/app/panel_ccl_compare.py +++ b/pyzebra/app/panel_ccl_compare.py @@ -295,7 +295,7 @@ def create(): plot_scatter1_source = ColumnDataSource(dict(x=[0], y=[0], y_upper=[0], y_lower=[0])) plot_scatter1 = plot.add_glyph( - plot_scatter1_source, Scatter(x="x", y="y", line_color="steelblue") + plot_scatter1_source, Scatter(x="x", y="y", line_color="steelblue", fill_color="steelblue") ) plot.add_layout( Whisker(source=plot_scatter1_source, base="x", upper="y_upper", lower="y_lower") @@ -303,7 +303,7 @@ def create(): plot_scatter2_source = ColumnDataSource(dict(x=[0], y=[0], y_upper=[0], y_lower=[0])) plot_scatter2 = plot.add_glyph( - plot_scatter2_source, Scatter(x="x", y="y", line_color="firebrick") + plot_scatter2_source, Scatter(x="x", y="y", line_color="firebrick", fill_color="firebrick") ) plot.add_layout( Whisker(source=plot_scatter2_source, base="x", upper="y_upper", lower="y_lower") @@ -614,7 +614,7 @@ def create(): area_method_div = Div(text="Intensity:", margin=(5, 5, 0, 5)) area_method_radiobutton = RadioGroup(labels=["Function", "Area"], active=0, width=145) - intensity_diff_div = Div(text="Intensity diff:", margin=(5, 5, 0, 5)) + intensity_diff_div = Div(text="Intensity difference:", margin=(5, 5, 0, 5)) intensity_diff_radiobutton = RadioGroup( labels=["file1 - file2", "file2 - file1"], active=0, width=145 ) diff --git a/pyzebra/app/panel_ccl_integrate.py b/pyzebra/app/panel_ccl_integrate.py index b13df74..ef8d54d 100644 --- a/pyzebra/app/panel_ccl_integrate.py +++ b/pyzebra/app/panel_ccl_integrate.py @@ -308,7 +308,7 @@ def create(): plot_scatter_source = ColumnDataSource(dict(x=[0], y=[0], y_upper=[0], y_lower=[0])) plot_scatter = plot.add_glyph( - plot_scatter_source, Scatter(x="x", y="y", line_color="steelblue") + plot_scatter_source, Scatter(x="x", y="y", line_color="steelblue", fill_color="steelblue") ) plot.add_layout(Whisker(source=plot_scatter_source, base="x", upper="y_upper", lower="y_lower")) diff --git a/pyzebra/app/panel_param_study.py b/pyzebra/app/panel_param_study.py index b5c4ad4..7657510 100644 --- a/pyzebra/app/panel_param_study.py +++ b/pyzebra/app/panel_param_study.py @@ -394,7 +394,7 @@ def create(): plot_scatter_source = ColumnDataSource(dict(x=[0], y=[0], y_upper=[0], y_lower=[0])) plot_scatter = plot.add_glyph( - plot_scatter_source, Scatter(x="x", y="y", line_color="steelblue") + plot_scatter_source, Scatter(x="x", y="y", line_color="steelblue", fill_color="steelblue") ) plot.add_layout(Whisker(source=plot_scatter_source, base="x", upper="y_upper", lower="y_lower"))