Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
mapqa
/
Views
/
Dashboard
/
Edit File Name :
_coopDashboardCharts.cshtml
@model RER_Project.DataAccess.ViewModels.RuralFinance.RuralFinanceVM <div class="row"> <div class="col-lg-3"> <div class="widget style1 navy-bg"> <div class="row"> <div class="col-lg-4"> <div style="padding-top:5px"></div> <i class="fa fa-user fa-4x"></i> </div> <div class="col-lg-8 text-right"> <span> Total Cooperatives </span> <h2 class="font-bold"> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0}", Model.TotalCoops) </h2> <br /> </div> </div> </div> </div> <!--<div class="col-lg-3"> <div class="widget style1 navy-bg"> <div class="row"> <div class="col-lg-4"> <div style="padding-top:5px"></div> <i class="fa fa-users fa-4x"></i> </div> <div class="col-lg-8 text-right">--> @*<span> # Groups </span> <h2 class="font-bold"> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0}", Model.FnSummaryChartDashboard.total_group) </h2>*@ <!--<br /> </div> </div> </div> </div> <div class="col-lg-3"> <div class="widget style1 navy-bg"> <div class="row"> <div class="col-lg-4"> <div style="padding-top:5px"></div> <i class="fa fa-user fa-4x"></i> </div> <div class="col-lg-8 text-right">--> @*<span># Beneficiaries </span> <h2 class="font-bold"> @String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"), "{0:#,0}", Convert.ToInt32(Model.FnSummaryChartDashboard.MemberCountList[0].Value)) </h2>*@ <!--<br /> </div> </div> </div> </div>--> </div> <br /> @*<div class="row" style="display:none"> <table class="table" id="datatable"> <tr> <th></th> <th>Jane</th> <th>John</th> </tr> <tr> <th>Apples</th> <td>3</td> <td>4</td> </tr> <tr> <th>Pears</th> <td>2</td> <td>0</td> </tr> </table> </div>*@ <div class="row" style="display:none"> <table id="dt"> <thead> <tr> <th>Category</th> <th>Total</th> </tr> </thead> <tbody> @*@foreach (var item in Model.ProvinceWiseCoopDistributions) { <tr> <td>@item.province_name</td> <td>@item.total</td> </tr> }*@ <tr><td>Province 1</td><td>23</td></tr> <tr><td>Province 2</td><td>115</td></tr> <tr><td>Province 3</td><td>37</td></tr> </tbody> </table> </div> <div class="row" style="display:none"> <table id="datatable2"> <thead> <tr> <th>Municipality</th> <th>Total</th> </tr> </thead> <tbody> @foreach (var item in Model.PalikaWiseCoopDistributions) { <tr> <td>@item.municipality</td> <td>@item.total</td> </tr> } </tbody> </table> </div> <div class="row" style="display:none"> <table id="datatable3"> <thead> <tr> <th>Type</th> <th>Total</th> </tr> </thead> <tbody> @foreach (var item in Model.TypeWiseCoopDistributions) { <tr> <td>@item.coop_type_name</td> <td>@item.total</td> </tr> } </tbody> </table> </div> <div class="row" style="display:none"> <table id="datatable4"> <thead> <tr> <th>Member Size</th> <th>Total</th> </tr> </thead> <tbody> @*@foreach (var item in Model.GenderWiseCoopDistributions) { <tr> <td>@item.member_size</td> <td>@item.annual_member</td> </tr> }*@ <tr> <td>Member Size</td> <td>@Model.GenderWiseCoopDistributions[0].member_size</td> </tr> <tr> <td>Annual Member Increment</td> <td>@Model.GenderWiseCoopDistributions[0].annual_member</td> </tr> <tr> <td>Male</td> <td>@Model.GenderWiseCoopDistributions[0].male</td> </tr> <tr> <td>Female</td> <td>@Model.GenderWiseCoopDistributions[0].female</td> </tr> <tr> <td>No of Coop(<=50% Female)</td> <td>@Model.GenderWiseCoopDistributions[0].female_coop</td> </tr> <tr> <td>No of Coop(Female Chairperson)</td> <td>@Model.GenderWiseCoopDistributions[0].chair_person_female</td> </tr> <tr> <td>No of Coop(Female Manager)</td> <td>@Model.GenderWiseCoopDistributions[0].manager_female</td> </tr> </tbody> </table> </div> <div class="row" style="display:none"> <table id="datatable5"> <thead> <tr> <th>Member Size</th> <th>Total</th> </tr> </thead> <tbody> <tr> <td>PAR>30</td> <td>@Model.OtherWiseCoopDistributions[0].par</td> </tr> <tr> <td>No of Coop(<=5%)</td> <td>@Model.OtherWiseCoopDistributions[0].par_coop</td> </tr> <tr> <td>Internal Resource Increment</td> <td>@Model.OtherWiseCoopDistributions[0].increment_rate_annual</td> </tr> <tr> <td>Trend of Saving Increment > 50%</td> <td>@Model.OtherWiseCoopDistributions[0].increment_rate_annual_trend</td> </tr> <tr> <td>Decreasing bad loan annual</td> <td>@Model.OtherWiseCoopDistributions[0].bad_loan</td> </tr> <tr> <td>Bad Loan</td> <td>@Model.OtherWiseCoopDistributions[0].total_bad_loan</td> </tr> <tr> <td>Outstanding Loan</td> <td>@Model.OtherWiseCoopDistributions[0].total_outstanding_loan</td> </tr> <tr> <td>No of Coop borrowing from external Resources</td> <td>@Model.OtherWiseCoopDistributions[0].external_borrowing</td> </tr> <tr> <td>No of Coop(income increased by 50%)</td> <td>@Model.OtherWiseCoopDistributions[0].income</td> </tr> <tr> <td>Trend of income increment</td> <td>@Model.OtherWiseCoopDistributions[0].income_trend</td> </tr> </tbody> </table> </div> @*<div class="row"> <div id="container" style="width: 100%; height: 400px;"></div> </div>*@ <br /> <div class="row"> <div class="col-lg-6"> <div id="Province"></div> </div> <div class="col-lg-6"> <div id="Municipality"></div> </div> </div> <br /> <div class="row"> <div class="col-lg-6"> <div id="Type"></div> </div> <div class="col-lg-6"> <div id="Gender"></div> </div> </div> <br /> <div class="row"> <div class="col-lg-6"> <div id="Other"></div> </div> <div class="col-lg-6"> <div id="Par"></div> </div> </div> @*<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/modules/data.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <script src="https://code.highcharts.com/modules/export-data.js"></script>*@ <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> <script type="text/javascript"> window.initializeSelectApis(); var dashboardJs = DashBoardJS(); var provinceColumnChart = @Html.Raw(Json.Encode(Model.ProvinceWiseCoopDistributions)); var parColumnChart = @Html.Raw(Json.Encode(Model.ParWiseCoopDistributions)); dashboardJs.drawProvinceColumn('Province', provinceColumnChart); dashboardJs.drawProvinceColumn('Par', parColumnChart); $(function () { //Highcharts.chart('container', { // data: { // table: 'datatable' // }, // chart: { // type: 'column' // }, // title: { // text: 'Data extracted from a HTML table in the page' // }, // xAxis: { // categories: ['Shrawan to Poush End', 'Magh to Ashad End'] // }, // yAxis: { // allowDecimals: false, // title: { // text: 'Units' // } // }, // tooltip: { // formatter: function () { // return '<b>' + this.series.name + '</b><br/>' + // this.point.y + ' ' + this.point.name.toLowerCase(); // } // } //}); //Highcharts.chart('Province', { // data: { // table: 'dt' // }, // chart: { // type: 'column' // }, // credits: { // enabled: false // }, // title: { // text: 'Province Wise Coop Distribution' // }, // yAxis: { // allowDecimals: false, // title: { // text: 'Number' // } // }, // tooltip: { // formatter: function () { // return '<b>' + this.series.name + '</b><br/>' + // this.point.y + ' ' + this.point.name.toLowerCase(); // } // } //}); Highcharts.chart('Municipality', { data: { table: 'datatable2' }, chart: { type: 'column' }, credits: { enabled: false }, plotOptions: { column: { colorByPoint: true } }, //colors: [ // '#ff0000', // '#00ff00', // '#0000ff' //], title: { text: 'Palika Wise Coop Distribution' }, yAxis: { allowDecimals: false, title: { text: 'Number' } }, tooltip: { formatter: function () { return '<b>' + this.series.name + '</b><br/>' + this.point.y + ' ' + this.point.name.toLowerCase(); } } }); Highcharts.chart('Type', { data: { table: 'datatable3' }, chart: { type: 'column' }, credits: { enabled: false }, plotOptions: { column: { colorByPoint: true } }, title: { text: 'Type Wise Coop Distribution' }, yAxis: { allowDecimals: false, title: { text: 'Number' } }, tooltip: { formatter: function () { return '<b>' + this.series.name + '</b><br/>' + this.point.y + ' ' + this.point.name.toLowerCase(); } } }); Highcharts.chart('Gender', { data: { table: 'datatable4' }, chart: { type: 'column' }, credits: { enabled: false }, plotOptions: { column: { colorByPoint: true } }, title: { text: 'Gender Wise Coop Distribution' }, yAxis: { allowDecimals: false, title: { text: 'Number' } }, tooltip: { formatter: function () { return '<b>' + this.series.name + '</b><br/>' + this.point.y + ' ' + this.point.name.toLowerCase(); } } }); Highcharts.chart('Other', { data: { table: 'datatable5' }, chart: { type: 'column' }, credits: { enabled: false }, plotOptions: { column: { colorByPoint: true } }, title: { text: 'Coop Distribution' }, yAxis: { allowDecimals: false, title: { text: 'Number' } }, tooltip: { formatter: function () { return '<b>' + this.series.name + '</b><br/>' + this.point.y + ' ' + this.point.name.toLowerCase(); } } }); }); </script> <style> .highcharts-credits { display: none; } .nepalese-currency { color: white; font-size: 2.2em; font-style: italic } .highcharts-legend { display: none; } </style>
Save