Blame view

app/partials/analytics/analytics.html 4.67 KB
feacde5ff   Rishav   setup acuefuel in...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <style>
     .chart-holder {
     height: 325px;
     }
     .cirque-stats {
     text-align: center;
     }
     .cirque-stats .cirque-container {   
     margin-top: 1.5em;
     margin-bottom: 1.5em;   
     margin-right: 2em;
     margin-left: 2em;
     }
     .subnavbar .mainnav > li:nth-child(3) > a{
     color: #ff9900;
     }
565570086   Kuldeep Arora   highcharts(MFS,CS...
17
18
19
20
21
22
23
     .table {
     border-collapse: separate;
     padding: 0px;
      
     }
  
     
ae523d5ef   Mr. Hot Foods   account setting m...
24
25
  
     
feacde5ff   Rishav   setup acuefuel in...
26
27
  </style>
  <div class="main">
565570086   Kuldeep Arora   highcharts(MFS,CS...
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
     <div class="customInputWrap">
     
        <div class="col-md-12" >
           <!--    <table>
                 <tr><label>Date Range Filter</label></tr>
                 <tr>
                    <td><input type="text" ng-model="drf.fromDate" datepicker class="form-control" placeholder="From" style="width: 150px" required /></td>
                     <td width="1"></td>
                    <td><input type="text" ng-model="drf.toDate" datepicker class="form-control" placeholder="To" style="width: 150px"></td>
                    <td>
                       <input type="button" value="Apply" ng-click="submitDate()">
                    </td>
               </tr>
               </table>
             -->
                  <label>Date Range Filter</label>
            <form name="myForm">
                  <input  type="text" ng-model="drf.fromDate" datepicker class="form-control" placeholder="From Date" required ng-required="true" style="width: 150px; float: left; margin-right: 15px;"/>
                  
                  <input type="text" ng-model="drf.toDate" datepicker class="form-control" placeholder="To Date" style="width: 150px; float: left; margin-right: 15px;">
  
                  <button class="btn btn-primary" ng-disabled="myForm.$invalid" ng-click="submitDate()" style="float: left; display: none;">Apply</button>
  
                  <button class="btn btn-primary" ng-click="submitDate()" style="float: left;">Apply</button>
                  <!--<label ng-if="fillForm">Swarn Singh</label> -->
                  <div class="clearfix"></div>
           </form>
         </div>  
         <div class="clearfix"></div> 
     </div>    
     
     
        <div class="container">
           <div class="row">
              <div class="col-md-6">
                 <div class="widget stacked">
                    <div class="widget-header">
                       <i class="icon-bar-chart"></i>
                       <h3>Monthly Fuel Sales</h3>
                    </div>
                    <!-- /widget-header -->
                    <div class="widget-content">
                       <nvd3 options="optionsmfs" data="datamfs"></nvd3>
                       <!-- /bar-chart -->
                    </div>
                    <!-- /widget-content -->
feacde5ff   Rishav   setup acuefuel in...
74
                 </div>
565570086   Kuldeep Arora   highcharts(MFS,CS...
75
                 <!-- /widget -->     
feacde5ff   Rishav   setup acuefuel in...
76
              </div>
565570086   Kuldeep Arora   highcharts(MFS,CS...
77
78
79
80
81
82
83
84
85
86
87
88
89
              <!-- /.span6 -->
              <div class="col-md-6">
                 <div class="widget stacked">
                    <div class="widget-header">
                       <i class="icon-bar-chart"></i>
                       <h3>Historic Fuel Pricing</h3>
                    </div>
                    <!-- /widget-header -->
                    <div class="widget-content">
                       <nvd3 options="optionshfp" data="datahfp"></nvd3>
                       <!-- /pie-chart -->
                    </div>
                    <!-- /widget-content -->
dd378d69f   Mr. Hot Foods   changes in flight...
90
                 </div>
565570086   Kuldeep Arora   highcharts(MFS,CS...
91
                 <!-- /widget -->        
dd378d69f   Mr. Hot Foods   changes in flight...
92
              </div>
565570086   Kuldeep Arora   highcharts(MFS,CS...
93
              <!-- /span6 -->
dd378d69f   Mr. Hot Foods   changes in flight...
94
           </div>
dd378d69f   Mr. Hot Foods   changes in flight...
95
96
  
  
feacde5ff   Rishav   setup acuefuel in...
97
        <div class="row">
05bfa28a2   Mr. Hot Foods   remove save butto...
98
        
feacde5ff   Rishav   setup acuefuel in...
99
100
101
102
103
104
        </div>
        <div class="row">
           <div class="col-md-6">
              <div class="widget stacked">
                 <div class="widget-header">
                    <i class="icon-bar-chart"></i>
05bfa28a2   Mr. Hot Foods   remove save butto...
105
                    <h3>Customer Sources</h3>
feacde5ff   Rishav   setup acuefuel in...
106
107
108
                 </div>
                 <!-- /widget-header -->
                 <div class="widget-content">
dd378d69f   Mr. Hot Foods   changes in flight...
109
                    <nvd3 options="optionscs" data="datacs"></nvd3>
feacde5ff   Rishav   setup acuefuel in...
110
111
112
113
114
115
116
                    <!-- /pie-chart -->
                 </div>
                 <!-- /widget-content -->
              </div>
              <!-- /widget -->        
           </div>
           <!-- /span6 -->
05bfa28a2   Mr. Hot Foods   remove save butto...
117
118
  
            <div class="col-md-6">
feacde5ff   Rishav   setup acuefuel in...
119
120
121
              <div class="widget stacked">
                 <div class="widget-header">
                    <i class="icon-bar-chart"></i>
05bfa28a2   Mr. Hot Foods   remove save butto...
122
                    <h3>Regional PAP Pricing</h3>
feacde5ff   Rishav   setup acuefuel in...
123
124
125
                 </div>
                 <!-- /widget-header -->
                 <div class="widget-content">
f100849ce   Mr. Hot Foods   analytics updates
126
                    <div id="map" style="width: 100%; height: 325px;"></div>
feacde5ff   Rishav   setup acuefuel in...
127
128
129
                 </div>
                 <!-- /widget-content -->
              </div>
05bfa28a2   Mr. Hot Foods   remove save butto...
130
              <!-- /widget -->     
feacde5ff   Rishav   setup acuefuel in...
131
           </div>
05bfa28a2   Mr. Hot Foods   remove save butto...
132
133
           <!-- /.span6 -->
          
feacde5ff   Rishav   setup acuefuel in...
134
        </div>
05bfa28a2   Mr. Hot Foods   remove save butto...
135
        
feacde5ff   Rishav   setup acuefuel in...
136
137
138
139
     </div>
     <!-- /container -->
  </div>
  <!-- /main -->
dd378d69f   Mr. Hot Foods   changes in flight...
140