LinearGauge
Displaying Values
Features
Sample
Settings
Description
This example demonstrates how to use the showText properties with the LinearGauge controls.
Source
ShowTextController.cs
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using MvcExplorer.Models;
namespace MvcExplorer.Controllers
{
public partial class LinearGaugeController : Controller
{
public ActionResult ShowText()
{
ViewBag.DemoSettings = true;
ViewBag.DemoSettingsModel = new ClientSettingsModel
{
Settings = CreateShowTextSettings()
};
return View();
}
private static IDictionary<string, object[]> CreateShowTextSettings()
{
var settings = new Dictionary<string, object[]>
{
{"ShowText", new object[]{"All", "Value", "MinMax", "None"}}
};
return settings;
}
}
}
ShowText.cshtml
@{
ClientSettingsModel demoSettingsModel = ViewBag.DemoSettingsModel;
}
<c1-linear-gauge id="@demoSettingsModel.ControlId" min="0" max="10" value="5" show-text="All" width="500px">
</c1-linear-gauge>
@section Description{
@Html.Raw(LinearGaugeRes.ShowText_Text0)
}
Documentation