├── Edit Dashboard in the Designer ├── Controllers │ ├── DesignerController.cs │ └── HomeController.cs ├── Dashboards │ └── DashboardChristmas.mrt ├── Edit Dashboard in the Designer.csproj ├── Edit Dashboard in the Designer.csproj.user ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Views │ ├── Designer │ │ └── Index.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Export and Print Dashboard from Code ├── Controllers │ └── HomeController.cs ├── Dashboards │ └── DashboardChristmas.mrt ├── Export and Print Dashboard from Code.csproj ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── LICENSE.md ├── NET Core MVC Samples.sln ├── README.md ├── Register Data for Dashboard Template ├── Controllers │ ├── HomeController.cs │ └── ViewerController.cs ├── Dashboards │ ├── Dashboard.mrt │ └── Demo.json ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Register Data for Dashboard Template.csproj ├── Startup.cs ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Viewer │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Runtime Dashboard Creation ├── Controllers │ ├── DesignerController.cs │ ├── HomeController.cs │ └── ViewerController.cs ├── Helpers │ └── Dashboard.cs ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Runtime Dashboard Creation.csproj ├── Startup.cs ├── Views │ ├── Designer │ │ └── Index.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Viewer │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── Show Dashboard in the Viewer ├── Controllers │ ├── HomeController.cs │ └── ViewerController.cs ├── Dashboards │ └── DashboardChristmas.mrt ├── Models │ └── ErrorViewModel.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Show Dashboard in the Viewer.csproj ├── Show Dashboard in the Viewer.csproj.user ├── Startup.cs ├── Views │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── Viewer │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json └── wwwroot │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── THIRD-PARTY.md └── Web Demo ├── Controllers ├── DesignController.cs └── ViewController.cs ├── Dashboards ├── DashboardChristmas.mrt ├── DashboardCustomerServiceKPI.mrt ├── DashboardEducation.mrt ├── DashboardEmergencyKPI.mrt ├── DashboardExchangeTenders.mrt ├── DashboardFastFoodLanch.mrt ├── DashboardFinanceKPI.mrt ├── DashboardFinancesKPI.mrt ├── DashboardFinancial.mrt ├── DashboardFitnessAndHealthStats.mrt ├── DashboardGlobalInternetUsage.mrt ├── DashboardHospitalOverview.mrt ├── DashboardHospitalPerformance.mrt ├── DashboardInternalKPI.mrt ├── DashboardManufacturing.mrt ├── DashboardManufacturingKPI.mrt ├── DashboardMarketingKPI.mrt ├── DashboardMedical.mrt ├── DashboardMetrics.mrt ├── DashboardNascar.mrt ├── DashboardOnlineStoreSales.mrt ├── DashboardOpec.mrt ├── DashboardOperationsKPI.mrt ├── DashboardOrderDetails.mrt ├── DashboardOrders.mrt ├── DashboardPatientHealthKPI.mrt ├── DashboardPatientSatisfaction.mrt ├── DashboardPopulationByState.mrt ├── DashboardProducts.mrt ├── DashboardPublicHealthKPI.mrt ├── DashboardRestaurantAttendanceTracking.mrt ├── DashboardRetailKPI.mrt ├── DashboardSaaSKPI.mrt ├── DashboardSaaSMetrics.mrt ├── DashboardSalesByCompanies.mrt ├── DashboardSalesByMonth.mrt ├── DashboardSalesOverview.mrt ├── DashboardSalesPerfomance.mrt ├── DashboardSalesStatistics.mrt ├── DashboardSiteStatistics.mrt ├── DashboardSocialNetworksStatistics.mrt ├── DashboardStudentsKPI.mrt ├── DashboardSummary.mrt ├── DashboardSupportKPI.mrt ├── DashboardTicketsStatistics.mrt ├── DashboardTrafficAnalytics.mrt ├── DashboardUniversityKPI.mrt ├── DashboardUserActivityStats.mrt ├── DashboardVehicleProduction.mrt └── DashboardWebsiteAnalytics.mrt ├── Models └── ErrorViewModel.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── Views ├── Design │ └── Dashboards.cshtml ├── Shared │ ├── Error.cshtml │ ├── _Layout.cshtml │ └── _ValidationScriptsPartial.cshtml ├── View │ └── Dashboards.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── Web Demo.csproj ├── Web Demo.csproj.user ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── libman.json └── wwwroot ├── css ├── site.css └── site.min.css ├── favicon.ico ├── images └── hyperlink.png ├── js ├── site.js └── site.min.js └── lib ├── bootstrap ├── .bower.json ├── LICENSE └── dist │ ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── jquery-validation-unobtrusive ├── .bower.json ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── .bower.json ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── .bower.json ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /Edit Dashboard in the Designer/Controllers/DesignerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Controllers/DesignerController.cs -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Dashboards/DashboardChristmas.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Dashboards/DashboardChristmas.mrt -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Edit Dashboard in the Designer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Edit Dashboard in the Designer.csproj -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Edit Dashboard in the Designer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Edit Dashboard in the Designer.csproj.user -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Program.cs -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Properties/launchSettings.json -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Startup.cs -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Views/Designer/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Views/Designer/Index.cshtml -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/appsettings.Development.json -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/appsettings.json -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/bundleconfig.json -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/css/site.css -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Edit Dashboard in the Designer/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Edit Dashboard in the Designer/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Dashboards/DashboardChristmas.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Dashboards/DashboardChristmas.mrt -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Export and Print Dashboard from Code.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Export and Print Dashboard from Code.csproj -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Program.cs -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Properties/launchSettings.json -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Startup.cs -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/appsettings.Development.json -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/appsettings.json -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/bundleconfig.json -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/css/site.css -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Export and Print Dashboard from Code/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Export and Print Dashboard from Code/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NET Core MVC Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/NET Core MVC Samples.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/README.md -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Controllers/ViewerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Controllers/ViewerController.cs -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Dashboards/Dashboard.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Dashboards/Dashboard.mrt -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Dashboards/Demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Dashboards/Demo.json -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Program.cs -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Properties/launchSettings.json -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Register Data for Dashboard Template.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Register Data for Dashboard Template.csproj -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Startup.cs -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Views/Viewer/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Views/Viewer/Index.cshtml -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Register Data for Dashboard Template/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Register Data for Dashboard Template/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/appsettings.Development.json -------------------------------------------------------------------------------- /Register Data for Dashboard Template/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/appsettings.json -------------------------------------------------------------------------------- /Register Data for Dashboard Template/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/bundleconfig.json -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/css/site.css -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Register Data for Dashboard Template/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Register Data for Dashboard Template/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Controllers/DesignerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Controllers/DesignerController.cs -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Controllers/ViewerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Controllers/ViewerController.cs -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Helpers/Dashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Helpers/Dashboard.cs -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Program.cs -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Properties/launchSettings.json -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Runtime Dashboard Creation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Runtime Dashboard Creation.csproj -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Startup.cs -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/Designer/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/Designer/Index.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/Viewer/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/Viewer/Index.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Runtime Dashboard Creation/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/appsettings.Development.json -------------------------------------------------------------------------------- /Runtime Dashboard Creation/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/appsettings.json -------------------------------------------------------------------------------- /Runtime Dashboard Creation/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/bundleconfig.json -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/css/site.css -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Runtime Dashboard Creation/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Runtime Dashboard Creation/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Controllers/ViewerController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Controllers/ViewerController.cs -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Dashboards/DashboardChristmas.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Dashboards/DashboardChristmas.mrt -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Program.cs -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Properties/launchSettings.json -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Show Dashboard in the Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Show Dashboard in the Viewer.csproj -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Show Dashboard in the Viewer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Show Dashboard in the Viewer.csproj.user -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Startup.cs -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Views/Home/About.cshtml -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Views/Viewer/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Views/Viewer/Index.cshtml -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/appsettings.Development.json -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/appsettings.json -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/bundleconfig.json -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/css/site.css -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Show Dashboard in the Viewer/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Show Dashboard in the Viewer/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /THIRD-PARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/THIRD-PARTY.md -------------------------------------------------------------------------------- /Web Demo/Controllers/DesignController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Controllers/DesignController.cs -------------------------------------------------------------------------------- /Web Demo/Controllers/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Controllers/ViewController.cs -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardChristmas.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardChristmas.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardCustomerServiceKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardCustomerServiceKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardEducation.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardEducation.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardEmergencyKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardEmergencyKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardExchangeTenders.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardExchangeTenders.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardFastFoodLanch.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardFastFoodLanch.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardFinanceKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardFinanceKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardFinancesKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardFinancesKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardFinancial.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardFinancial.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardFitnessAndHealthStats.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardFitnessAndHealthStats.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardGlobalInternetUsage.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardGlobalInternetUsage.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardHospitalOverview.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardHospitalOverview.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardHospitalPerformance.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardHospitalPerformance.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardInternalKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardInternalKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardManufacturing.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardManufacturing.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardManufacturingKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardManufacturingKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardMarketingKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardMarketingKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardMedical.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardMedical.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardMetrics.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardMetrics.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardNascar.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardNascar.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardOnlineStoreSales.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardOnlineStoreSales.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardOpec.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardOpec.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardOperationsKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardOperationsKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardOrderDetails.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardOrderDetails.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardOrders.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardOrders.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardPatientHealthKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardPatientHealthKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardPatientSatisfaction.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardPatientSatisfaction.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardPopulationByState.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardPopulationByState.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardProducts.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardProducts.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardPublicHealthKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardPublicHealthKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardRestaurantAttendanceTracking.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardRestaurantAttendanceTracking.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardRetailKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardRetailKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSaaSKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSaaSKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSaaSMetrics.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSaaSMetrics.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSalesByCompanies.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSalesByCompanies.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSalesByMonth.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSalesByMonth.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSalesOverview.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSalesOverview.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSalesPerfomance.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSalesPerfomance.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSalesStatistics.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSalesStatistics.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSiteStatistics.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSiteStatistics.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSocialNetworksStatistics.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSocialNetworksStatistics.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardStudentsKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardStudentsKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSummary.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSummary.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardSupportKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardSupportKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardTicketsStatistics.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardTicketsStatistics.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardTrafficAnalytics.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardTrafficAnalytics.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardUniversityKPI.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardUniversityKPI.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardUserActivityStats.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardUserActivityStats.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardVehicleProduction.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardVehicleProduction.mrt -------------------------------------------------------------------------------- /Web Demo/Dashboards/DashboardWebsiteAnalytics.mrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Dashboards/DashboardWebsiteAnalytics.mrt -------------------------------------------------------------------------------- /Web Demo/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /Web Demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Program.cs -------------------------------------------------------------------------------- /Web Demo/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Properties/launchSettings.json -------------------------------------------------------------------------------- /Web Demo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Startup.cs -------------------------------------------------------------------------------- /Web Demo/Views/Design/Dashboards.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Views/Design/Dashboards.cshtml -------------------------------------------------------------------------------- /Web Demo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Web Demo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Web Demo/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /Web Demo/Views/View/Dashboards.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Views/View/Dashboards.cshtml -------------------------------------------------------------------------------- /Web Demo/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Web Demo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Web Demo/Web Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Web Demo.csproj -------------------------------------------------------------------------------- /Web Demo/Web Demo.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/Web Demo.csproj.user -------------------------------------------------------------------------------- /Web Demo/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/appsettings.Development.json -------------------------------------------------------------------------------- /Web Demo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/appsettings.json -------------------------------------------------------------------------------- /Web Demo/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/bundleconfig.json -------------------------------------------------------------------------------- /Web Demo/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/libman.json -------------------------------------------------------------------------------- /Web Demo/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/css/site.css -------------------------------------------------------------------------------- /Web Demo/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /Web Demo/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Web Demo/wwwroot/images/hyperlink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/images/hyperlink.png -------------------------------------------------------------------------------- /Web Demo/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /Web Demo/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /Web Demo/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stimulsoft/Samples-Dashboards-NET.Core-MVC-CSharp/HEAD/Web Demo/wwwroot/lib/jquery/dist/jquery.min.map --------------------------------------------------------------------------------