From 767d626a5e66bf7dc5b3bb3a6ec055b7fb492e49 Mon Sep 17 00:00:00 2001 From: Josue Balandrano Coronel Date: Fri, 2 Aug 2019 16:15:22 +0000 Subject: [PATCH] [BB-1491] Fix the progress graph y-axis - window resize formatting problem in Ironwood --- lms/templates/courseware/progress_graph.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lms/templates/courseware/progress_graph.js b/lms/templates/courseware/progress_graph.js index 8c1bb8c9d9..b2248441dc 100644 --- a/lms/templates/courseware/progress_graph.js +++ b/lms/templates/courseware/progress_graph.js @@ -273,6 +273,7 @@ $(function () { }; var $grade_detail_graph = $("#${graph_div_id | n, js_escaped_string}"); + $grade_detail_graph.width($grade_detail_graph.parent().width()); if ($grade_detail_graph.length > 0) { var plot = $.plot($grade_detail_graph, series, options);