Subversion Repositories SmartDukaan

Rev

Rev 28430 | Rev 34388 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28430 tejbeer 1
  <div class="chart-container" id="chart-container" style="position: relative; width:100%">
2
                            <canvas id="barchart" width="auto" height="auto"></canvas>
3
                        </div>
4
 
5
 
6
   <style>
7
   canvas {
8
        -moz-user-select: none;
9
        -webkit-user-select: none;
10
        -ms-user-select: none;
11
    }
12
</style>
13
 
14
 <script type="text/javascript">
15
 
16
        var options = $chartMap;
17
        var ctx = document.getElementById('barchart').getContext('2d');
33990 tejus.loha 18
        window.bar = new Chart1(ctx, options);
28430 tejbeer 19
 
20
</script>