From 5b49528a3329d28a3e655c1507a61d38ef3f9ebe Mon Sep 17 00:00:00 2001 From: Qais Yousuf Date: Tue, 30 Apr 2024 14:28:32 +0200 Subject: [PATCH] question type of image chart completed --- .../Views/SurveyAnalysis/Analysis.cshtml | 201 ++++++++++++++++-- 1 file changed, 182 insertions(+), 19 deletions(-) diff --git a/Web/Areas/Admin/Views/SurveyAnalysis/Analysis.cshtml b/Web/Areas/Admin/Views/SurveyAnalysis/Analysis.cshtml index d076465..d3f21d2 100644 --- a/Web/Areas/Admin/Views/SurveyAnalysis/Analysis.cshtml +++ b/Web/Areas/Admin/Views/SurveyAnalysis/Analysis.cshtml @@ -21,11 +21,9 @@ } #Errocard{ - - - box-shadow: 0px 0px 8px -1px rgba(20,101,230,1); - -webkit-box-shadow: 0px 0px 8px -1px rgba(20,101,230,1); - border-radius: 10px; + box-shadow: 0px 0px 13px 0px rgb(20 101 230 / 35%); + -webkit-box-shadow: 0px 0px 13px 0px rgb(20 101 230 / 35%); + border-radius: 5px; background-color: 0px 0px 8px -1px rgba(20,101,230,1); height: auto; @@ -35,17 +33,34 @@ } .Errocard { - box-shadow: 0px 0px 8px -1px rgba(20,101,230,1); - -webkit-box-shadow: 0px 0px 8px -1px rgba(20,101,230,1); - border-radius: 10px; + box-shadow: 0px 0px 13px 0px rgb(20 101 230 / 35%); + -webkit-box-shadow: 0px 0px 13px 0px rgb(20 101 230 / 35%); + border-radius: 5px; } - rect{ + /* rect{ - border-radius:10px !important; + border-radius:5px !important; + background-color:transparent !important; + } */ + + body { + font-family: "Poppins", Arial, sans-serif; + font-size: 14px; + line-height: 1.8; + font-weight: normal; + background: #ffffff; + color: gray; } + img{ + box-shadow: 0px 0px 13px 0px rgb(20 101 230 / 35%); + -webkit-box-shadow: 0px 0px 13px 0px rgb(20 101 230 / 35%); + border-radius: 5px; + background-color: 0px 0px 8px -1px rgba(20,101,230,1); + height: auto; + }
@@ -65,7 +80,7 @@ Total user respond @Model.ParticipantCount
- Users + Participated users @foreach (var item in Model.Users) { @item.UserName @@ -76,24 +91,172 @@
-
+ @*
@foreach (var question in Model.Questions) {
-
+
} +
*@ +
+ @foreach (var question in Model.Questions) + { +
+ +
+ + + @if (question.Type == QuestionType.Image) + { +
+ } +
+ }
+ +
- - - - @section Scripts { + + +} + + + +@* @section Scripts { + + +} + *@ + + + + +@* @section Scripts { -} +} *@