LinearGauge
Overview
This sample shows the basic usage of the LinearGauge control.
Features
Description
This sample shows the basic usage of the LinearGauge control.
1 2 3 4 5 6 7 8 9 10 11 12 | using Microsoft.AspNetCore.Mvc; namespace MvcExplorer.Controllers { public partial class LinearGaugeController : Controller { public ActionResult Index() { return View(); } } } |
1 2 3 4 5 6 7 8 | < c1-linear-gauge width = "500px" > < c1-gauge-range c1-property = "Face" min = "0" max = "10" ></ c1-gauge-range > < c1-gauge-range c1-property = "Pointer" max = "5" ></ c1-gauge-range > </ c1-linear-gauge > @section Description{ @Html .Raw(LinearGaugeRes.Index_Text0) } |