diff --git a/pyzebra/app/panel_ccl_compare.py b/pyzebra/app/panel_ccl_compare.py index 59da1ab57c315f31eb2c1a966cbd36c56e20b47b..2d920e253c9568d4d3d2095fc12f850b786baf33 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 b13df74742c601c65a21ff28fa43ff6d3d01d458..ef8d54d3c8729fdb4184b90a276af0f8ba4b8e9b 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 b5c4ad40d6dc25d0dd7f646e88c5af52e05912a1..76575107f52c0e8773834fa433bf58c1d6c7651a 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"))