Change Index Page

This commit is contained in:
Palash Biswas 2022-10-19 14:51:57 +05:30
parent f6bbb415b9
commit 44609a8659
2 changed files with 9 additions and 9 deletions

View File

@ -25,7 +25,7 @@
</div> </div>
</div> </div>
</div> </div>
@*<section class="content"> <section class="content">
<div class="container-fluid"> <div class="container-fluid">
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
@ -415,4 +415,4 @@
</div> </div>
<!-- /.row --> <!-- /.row -->
</div> </div>
</section>*@ </section>

View File

@ -12,7 +12,7 @@
//----------------------- //-----------------------
// Get context with jQuery - using jQuery's .get() method. // Get context with jQuery - using jQuery's .get() method.
// var salesChartCanvas = $('#salesChart').get(0).getContext('2d'); var salesChartCanvas = $('#salesChart').get(0).getContext('2d');
// This will get the first returned node in the jQuery collection. // This will get the first returned node in the jQuery collection.
var salesChartData = { var salesChartData = {
@ -83,11 +83,11 @@
}; };
//Create the line chart //Create the line chart
//var salesChart = new Chart(salesChartCanvas, { var salesChart = new Chart(salesChartCanvas, {
// type: 'line', type: 'line',
// data: salesChartData, data: salesChartData,
// options: salesChartOptions options: salesChartOptions
//}); });
//--------------------------- //---------------------------
//- END MONTHLY SALES CHART - //- END MONTHLY SALES CHART -