Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
28443 tejbeer 1
 <div class="chart-container" id="chart-container" style="position: relative; width:100%">
2
                            <canvas id="price_drop_chart" 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('price_drop_chart').getContext('2d');
18
        window.bar = new Chart(ctx, options);
28446 tejbeer 19
 
20
 
28443 tejbeer 21
 
22
</script>