Browse Source

Change Index Page

feature/AddUrlPropertyInLoginAndRegister
Palash Biswas 2 years ago
parent
commit
44609a8659
2 changed files with 9 additions and 9 deletions
  1. +2
    -2
      BCS.BMC/src/BCS.BMC.Web.Mvc/Views/Home/Index.cshtml
  2. +7
    -7
      BCS.BMC/src/BCS.BMC.Web.Mvc/wwwroot/view-resources/Views/Home/Index.js

+ 2
- 2
BCS.BMC/src/BCS.BMC.Web.Mvc/Views/Home/Index.cshtml View File

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

+ 7
- 7
BCS.BMC/src/BCS.BMC.Web.Mvc/wwwroot/view-resources/Views/Home/Index.js View File

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


Loading…
Cancel
Save