Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/18/16 16:30:39 (9 years ago)
Author:
jlodewyc
Message:

#2582 Livefeed graph data, main unified graph + bugfixing refresh overload

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  
    9191                    <script src="~/js/scripts/graphs/graphdatacollector.js"></script>
    9292                    <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">
    9396
     97                        </div>
     98                    </div>
    9499                    <div class="row" >
    95100                        <h3 style="padding-left:20px; ">Tasks</h3>
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/SelectedJobPartials/_AlgTask.cshtml

    r13714 r13719  
    8282            @Html.Raw(JsonConvert.SerializeObject(Model.hiveTask.Task.StateLog)));
    8383
    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;";
    8585
    8686        Plotly.newPlot('graph@(Model.hiveTask.Task.Id)',
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/SelectedJobPartials/_BatchTask.cshtml

    r13714 r13719  
    7474                   type="checkbox"
    7575                   data-toggle="toggle"
    76                    checked
    7776                   data-on="Line"
    7877                   data-off="Pie"
     
    9998            @Html.Raw(JsonConvert.SerializeObject(Model.hiveTask.Task.StateLog)));
    10099
    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;";
    102101
    103102        Plotly.newPlot('graph@(Model.hiveTask.Task.Id)',
  • branches/WebJobManager/HeuristicLab.Clients.Hive.WebJobManager/Views/Job/SelectedJobPartials/_ExpTask.cshtml

    r13714 r13719  
    7676                   type="checkbox"
    7777                   data-toggle="toggle"
    78                    checked
     78                   
    7979                   data-on="Line"
    8080                   data-off="Pie"
     
    101101            @Html.Raw(JsonConvert.SerializeObject(Model.hiveTask.Task.StateLog)));
    102102
    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;";
    104104
    105105        Plotly.newPlot('graph@(Model.hiveTask.Task.Id)',
Note: See TracChangeset for help on using the changeset viewer.