LinearGauge
概要
機能
サンプル
説明
このサンプルは、LinearGauge コントロールの基本的な使用方法を示します。
ソース
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)
}
マニュアル