1
+ <!DOCTYPE html>
2
+ < html >
3
+ < head >
4
+ < title > dataplot.js</ title >
5
+ < meta http-equiv ="X-UA-Compatible " content ="IE=EDGE "/>
6
+ < link rel ="stylesheet " href ="https://fonts.googleapis.com/icon?family=Material+Icons "/>
7
+ < link rel ="stylesheet " type ="text/css " href ="https://code.getmdl.io/1.3.0/material.indigo-blue.min.css "/>
8
+ < link rel ="stylesheet " type ="text/css " href ="css/style.css "/>
9
+ < script defer src ="https://code.getmdl.io/1.3.0/material.min.js "> </ script >
10
+ </ head >
11
+ < body >
12
+ <!-- Always shows a header, even in smaller screens. -->
13
+ < div class ="mdl-layout mdl-js-layout mdl-layout--fixed-header ">
14
+ < header class ="mdl-layout__header ">
15
+ < div class ="mdl-layout__header-row ">
16
+ <!-- Title -->
17
+ < span class ="mdl-layout-title "> dataplot.js</ span >
18
+ <!-- Add spacer, to align navigation to the right -->
19
+ < div class ="mdl-layout-spacer "> </ div >
20
+ <!-- Navigation. We hide it in small screens. -->
21
+ < nav class ="mdl-navigation mdl-layout--large-screen-only ">
22
+ </ nav >
23
+ </ div >
24
+ </ header >
25
+ < div class ="mdl-layout__drawer ">
26
+ < span class ="mdl-layout-title "> Projects</ span >
27
+ < nav class ="mdl-navigation ">
28
+ < a id ="add-project " class ="mdl-navigation__link " href =""> < i class ="material-icons "> add</ i > New project</ a >
29
+ </ nav >
30
+ </ div >
31
+ < main class ="mdl-layout__content ">
32
+ < div id ="data-config-contain ">
33
+ < div id ="graph-config " class ="mdl-card mdl-shadow--2dp ">
34
+ < div class ="mdl-card__title ">
35
+ < h2 class ="mdl-card__title-text "> Plot settings</ h2 >
36
+ </ div >
37
+ < form id ="config ">
38
+ < div class ="mdl-textfield mdl-js-textfield mdl-textfield--floating-label ">
39
+ < input class ="graph-config mdl-textfield__input " type ="text " id ="graph-title "/>
40
+ < label class ="mdl-textfield__label " for ="graph-title "> Plot title</ label >
41
+ </ div >
42
+ < div class ="mdl-textfield mdl-js-textfield mdl-textfield--floating-label ">
43
+ < input class ="graph-config mdl-textfield__input " type ="text " id ="graph-ylabel "/>
44
+ < label class ="mdl-textfield__label " for ="graph-ylabel "> Y-axis label</ label >
45
+ </ div >
46
+ < label class ="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect " for ="autoscale-x ">
47
+ < input type ="checkbox " id ="autoscale-x " class ="mdl-checkbox__input " checked />
48
+ < span class ="mdl-checkbox__label "> Autoscale X-axis</ span >
49
+ </ label >
50
+ < span class ="config-range mdl-textfield mdl-js-textfield ">
51
+ < input id ="x-min " class ="mdl-textfield__input " type ="number " pattern ="-?[0-9](\.[0-9]+)? " disabled />
52
+ < label class ="mdl-textfield__label " for ="x-min "> min</ label >
53
+ < span class ="mdl-textfield__error "> Must be numeric</ span >
54
+ </ span > to
55
+ < span class ="config-range mdl-textfield mdl-js-textfield ">
56
+ < input id ="x-max " class ="mdl-textfield__input " type ="number " pattern ="-?[0-9](\.[0-9]+)? " disabled />
57
+ < label class ="mdl-textfield__label " for ="x-max "> max</ label >
58
+ < span class ="mdl-textfield__error "> Must be numeric</ span >
59
+ </ span >
60
+ < label class ="mdl-checkbox mdl-js-checkbox mdl-js-ripple-effect " for ="autoscale-y ">
61
+ < input type ="checkbox " id ="autoscale-y " class ="mdl-checkbox__input " checked />
62
+ < span class ="mdl-checkbox__label "> Autoscale Y-axis</ span >
63
+ </ label >
64
+ < span class ="config-range mdl-textfield mdl-js-textfield ">
65
+ < input id ="x-min " class ="mdl-textfield__input " type ="number " pattern ="-?[0-9](\.[0-9]+)? " disabled />
66
+ < label class ="mdl-textfield__label " for ="x-min "> min</ label >
67
+ < span class ="mdl-textfield__error "> Must be numeric</ span >
68
+ </ span > to
69
+ < span class ="config-range mdl-textfield mdl-js-textfield ">
70
+ < input id ="x-max " class ="mdl-textfield__input " type ="number " pattern ="-?[0-9](\.[0-9]+)? " disabled />
71
+ < label class ="mdl-textfield__label " for ="x-max "> max</ label >
72
+ < span class ="mdl-textfield__error "> Must be numeric</ span >
73
+ </ span >
74
+ </ form >
75
+ </ div >
76
+ < div id ="data-table-contain " class ="mdl-card mdl-shadow--2dp ">
77
+ < div class ="mdl-tabs mdl-js-tabs mdl-js-ripple-effect ">
78
+ < div class ="mdl-tabs__tab-bar ">
79
+ < a href ="#datasets " class ="mdl-tabs__tab is-active "> Datasets</ a >
80
+ < a href ="#functions " class ="mdl-tabs__tab "> Functions</ a >
81
+ </ div >
82
+
83
+ < div id ="datasets " class ="mdl-tabs__panel is-active ">
84
+ < table id ="data-table " class ="mdl-data-table mdl-js-data-table ">
85
+ < thead >
86
+ < tr >
87
+ < th id ="x-name "> x</ th >
88
+ < th class ="y-name " data-setnum ="0 "> y0</ th >
89
+ < th id ="add-col ">
90
+ < button class ="mdl-button mdl-js-button mdl-button--icon mdl-js-ripple-effect "> < i class ="material-icons "> add</ i > </ button >
91
+ </ th >
92
+ </ tr >
93
+ </ thead >
94
+ < tbody >
95
+ < tr >
96
+ < td > </ td >
97
+ < td > </ td >
98
+ < td > </ td >
99
+ </ tr >
100
+ </ tbody >
101
+ </ table >
102
+ </ div >
103
+ < div id ="functions " class ="mdl-tabs__panel ">
104
+ </ div >
105
+ </ div >
106
+ < div id ="dataset-actions " class ="actions-flex mdl-card__actions mdl-card--border ">
107
+ < button id ="import " class ="mdl-button mdl-js-button mdl-button--icon mdl-js-ripple-effect "> < i class ="material-icons "> file_upload</ i > </ button >
108
+ < div class ="mdl-tooltip mdl-tooltip--top " data-mdl-for ="import "> Import datasets from CSV</ div >
109
+ < button id ="export " class ="mdl-button mdl-js-button mdl-button--icon mdl-js-ripple-effect "> < i class ="material-icons "> file_download</ i > </ button >
110
+ < div class ="mdl-tooltip mdl-tooltip--top " data-mdl-for ="export "> Export datasets to CSV</ div >
111
+ < div class ="spacer "> </ div >
112
+ < button class ="mdl-button mdl-js-button mdl-button--fab mdl-button--mini-fab mdl-button--colored mdl-js-ripple-effect ">
113
+ < i class ="material-icons "> done</ i >
114
+ </ button >
115
+ </ div >
116
+ </ div >
117
+ </ div >
118
+ < div id ="graph-contain " class ="mdl-card mdl-shadow--2dp ">
119
+ < canvas id ="graph "> Your browser does not support dataplot.js. Please upgrade your current browser or switch to a different browser.</ canvas >
120
+ < div class ="mdl-card__actions mdl-card--border ">
121
+ < button id ="compute-trendline " class ="mdl-button mdl-js-button mdl-button--icon mdl-js-ripple-effect "> < i class ="material-icons "> trending_up</ i > </ button >
122
+ < div class ="mdl-tooltip mdl-tooltip--top " data-mdl-for ="compute-trendline "> Compute and plot trendlines</ div >
123
+ < button id ="optimal-size " class ="mdl-button mdl-js-button mdl-button--icon mdl-js-ripple-effect "> < i class ="material-icons "> image_aspect_ratio</ i > </ button >
124
+ < div class ="mdl-tooltip mdl-tooltip--top " data-mdl-for ="optimal-size "> Get plot for use with documents</ div >
125
+ </ div >
126
+ </ div >
127
+ </ main >
128
+ </ div >
129
+ </ body >
130
+ </ html >
0 commit comments