Blame view

src/app/component/graph/graph.component.html 712 Bytes
0331a197d   lsagona   add axis selector
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <div class="sticky-top" style=" margin-top: -80px;margin-left: 50px;">
    <div class="form-row">
      <div class="form-group col-md-2 ">
        <label for="xaxis"></label>
        <select id="xaxis" class="form-control">
          <option selected>Choose x axis</option>
          <option>...</option>
        </select>
      </div>
      <div class="form-group col-md-2 ">
        <label for="yaxis"></label>
        <select id="yaxis" class="form-control">
          <option selected>Choose y axis</option>
          <option>...</option>
        </select>
      </div>
    </div>
  </div>
  <plotly-plot [data]="graph.data" [layout]="graph.layout"
               [style]="{position: 'relative', width: '100%' , height:'100%'}"></plotly-plot>
8c0f5138e   lsagona   plot arbitrary da...
21

8c0f5138e   lsagona   plot arbitrary da...
22