- Timestamp:
- 03/18/16 16:30:39 (9 years ago)
- Location:
- branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/Index.cshtml
r13714 r13719 91 91 <script src="~/js/scripts/graphs/graphdatacollector.js"></script> 92 92 <script src="~/js/scripts/graphs/graphhubber.js"></script> 93 <div class="row"> 94 <div class="btn btn-lg btn-info" onclick="redrawMain()">Refresh main graph</div> 95 <div id="graphMain" style="width:100%;height:400px"> 93 96 97 </div> 98 </div> 94 99 <div class="row" > 95 100 <h3 style="padding-left:20px; ">Tasks</h3> -
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/SelectedJobPartials/_AlgTask.cshtml
r13714 r13719 82 82 @Html.Raw(JsonConvert.SerializeObject(Model.hiveTask.Task.StateLog))); 83 83 84 document.getElementById("graph@(Model.hiveTask.Task.Id)").style = "width: 90%; height: 450px;";84 document.getElementById("graph@(Model.hiveTask.Task.Id)").style = "width: 100%; height: 400px;"; 85 85 86 86 Plotly.newPlot('graph@(Model.hiveTask.Task.Id)', -
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/SelectedJobPartials/_BatchTask.cshtml
r13714 r13719 74 74 type="checkbox" 75 75 data-toggle="toggle" 76 checked77 76 data-on="Line" 78 77 data-off="Pie" … … 99 98 @Html.Raw(JsonConvert.SerializeObject(Model.hiveTask.Task.StateLog))); 100 99 101 document.getElementById("graph@(Model.hiveTask.Task.Id)").style = "width: 90%; height: 450px;";100 document.getElementById("graph@(Model.hiveTask.Task.Id)").style = "width: 100%; height: 400px;"; 102 101 103 102 Plotly.newPlot('graph@(Model.hiveTask.Task.Id)', -
branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/SelectedJobPartials/_ExpTask.cshtml
r13714 r13719 76 76 type="checkbox" 77 77 data-toggle="toggle" 78 checked78 79 79 data-on="Line" 80 80 data-off="Pie" … … 101 101 @Html.Raw(JsonConvert.SerializeObject(Model.hiveTask.Task.StateLog))); 102 102 103 document.getElementById("graph@(Model.hiveTask.Task.Id)").style = "width: 90%; height: 450px;";103 document.getElementById("graph@(Model.hiveTask.Task.Id)").style = "width: 100%!important; height: 400px;"; 104 104 105 105 Plotly.newPlot('graph@(Model.hiveTask.Task.Id)',
Note: See TracChangeset
for help on using the changeset viewer.