0

I use chartist.js to make my chart. this is type of its input enter image description here it needs Quotation both sides,but I can't make it

I tried to do this ,but it doesn't work. enter image description here

enter image description here But,the output is awful ! How can I fix it?

Community
  • 1
  • 1

1 Answers1

0

Html.Raw renders what it is given without doing any html encoding

Html.Raw Method asks the Razor Engine to do not encode the special chars.

So you can solve this by using @Html.Raw()

kgajjar20
  • 311
  • 2
  • 7