Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/27/13 16:34:48 (12 years ago)
Author:
fschoepp
Message:

#1888:

  • The Edit-Experiment-Page now correctly displays the experiments again.
  • Disabled key navigation for all wizards.
  • Added a RunCollectionView to render different Plots for the run results of a job.
  • Added a Boxplot-Chart and a Bubble-Chart for rendering the results.
  • Added underscoreAddon.js which provides methods to calculate mean/sum of an JavaScript array/list.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Job/Index.cshtml

    r9324 r9335  
    7474</script>
    7575
     76<script type="text/template" id="runcollection_template">
     77<div>
     78  <span>Plot:
     79    <select class="plotType"> 
     80      <option>Boxplot</option>
     81      <option>Bubblechart</option>
     82      <option>Datatable</option>
     83    </select>
     84  </span>
     85  <span class="choice">
     86    <span>X: <select class="x"></select></span>
     87    <span>Y: <select class="y"></select></span>
     88  </span>
     89 
     90  <span class="bubble">
     91    Bubble Size: <select class="bubbleSize"><option>Constant</option></select> <div class="bubbleSlider"></div>
     92  </span>
     93
     94  <span class="datatable">
     95    DataTable: <select class="datatableOptions"></select>
     96    DataRow: <select class="datatableRow"></select>   
     97  </span>
     98  <div class="resizer" style="width: 600px">
     99    <div class="plot" id="tmp">         
     100    </div> 
     101  </div>
     102</div>
     103</script>
     104
    76105
    77106<script type='text/javascript'>
Note: See TracChangeset for help on using the changeset viewer.