RadialGauge
RadialGauge
Styling
Features
Sample
Description
In this example, we added the "custom-gauge" CSS class to RadialGauge, and defined CSS rules to create an orange pointer.
Source
StylingController.cs
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MvcExplorer.Controllers { public partial class RadialGaugeController : Controller { public ActionResult Styling() { return View(); } } }
Styling.cshtml
@section Styles{ <style> .custom-gauge .wj-pointer path{ fill: #ffa500; stroke: #cd853f; } </style> } @(Html.C1().RadialGauge() .Min(0).Max(10).Value(5) .Width(500).CssClass("custom-gauge") .Width(300).Height(180) ) @section Description{ @Html.Raw(Resources.RadialGauge.Styling_Text0) }
Documentation