summaryrefslogtreecommitdiffstats
path: root/scripts/pybootchartgui/pybootchartgui/draw.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/pybootchartgui/pybootchartgui/draw.py')
-rw-r--r--scripts/pybootchartgui/pybootchartgui/draw.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/draw.py b/scripts/pybootchartgui/pybootchartgui/draw.py
index 53324b9f8b..fc708b55c3 100644
--- a/scripts/pybootchartgui/pybootchartgui/draw.py
+++ b/scripts/pybootchartgui/pybootchartgui/draw.py
@@ -267,11 +267,14 @@ def draw_chart(ctx, color, fill, chart_bounds, data, proc_tree, data_range):
267 # avoid divide by zero 267 # avoid divide by zero
268 if max_y == 0: 268 if max_y == 0:
269 max_y = 1.0 269 max_y = 1.0
270 xscale = float (chart_bounds[2]) / (max_x - x_shift) 270 if (max_x - x_shift):
271 xscale = float (chart_bounds[2]) / (max_x - x_shift)
272 else:
273 xscale = float (chart_bounds[2])
271 # If data_range is given, scale the chart so that the value range in 274 # If data_range is given, scale the chart so that the value range in
272 # data_range matches the chart bounds exactly. 275 # data_range matches the chart bounds exactly.
273 # Otherwise, scale so that the actual data matches the chart bounds. 276 # Otherwise, scale so that the actual data matches the chart bounds.
274 if data_range: 277 if data_range and (data_range[1] - data_range[0]):
275 yscale = float(chart_bounds[3]) / (data_range[1] - data_range[0]) 278 yscale = float(chart_bounds[3]) / (data_range[1] - data_range[0])
276 ybase = data_range[0] 279 ybase = data_range[0]
277 else: 280 else: