LinearGauge
Overview
Features
Sample
Description
This sample shows the basic usage of the LinearGauge control.
Source
IndexController.cs
using Microsoft.AspNetCore.Mvc;
namespace MvcExplorer.Controllers
{
public partial class LinearGaugeController : Controller
{
public ActionResult Index()
{
return View();
}
}
}
Index.cshtml
<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)
} Documentation