Fixed an issue with bar chart numbers being cut off
Browse files- app_components/plots.py +1 -1
app_components/plots.py
CHANGED
@@ -160,7 +160,7 @@ class PlotPanels(param.Parameterized):
|
|
160 |
# Used to fix axis limits
|
161 |
fig.add_trace(
|
162 |
go.Scatter(
|
163 |
-
x = [0.5, 0.5], y = [0.1, 1],
|
164 |
marker = dict(color = 'rgba(0, 0, 0, 0)', size = 10),
|
165 |
mode = 'markers',
|
166 |
hoverinfo = 'skip',
|
|
|
160 |
# Used to fix axis limits
|
161 |
fig.add_trace(
|
162 |
go.Scatter(
|
163 |
+
x = [0.5, 0.5], y = [0.1, 1.01],
|
164 |
marker = dict(color = 'rgba(0, 0, 0, 0)', size = 10),
|
165 |
mode = 'markers',
|
166 |
hoverinfo = 'skip',
|