BMC: Change Home Index File

This commit is contained in:
Palash Biswas 2022-10-17 19:40:14 +05:30
parent b9d9b3eaa4
commit abb01d3318
2 changed files with 8 additions and 8 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 -