RadialGauge
RadialGauge
Overview
This sample shows the basic usage of the RadialGauge control.
Features
Description
This sample shows the basic usage of the RadialGauge control.
1 2 3 4 5 6 7 8 9 10 11 12 | using Microsoft.AspNetCore.Mvc; namespace MvcExplorer.Controllers { public partial class RadialGaugeController : Controller { public ActionResult Index() { return View(); } } } |
1 2 3 4 5 6 | < c1-radial-gauge min = "0" max = "10" value = "5" show-text = "None" width = "300px" height = "180px" > </ c1-radial-gauge > @section Description{ @Html .Raw(RadialGaugeRes.Index_Text0) } |