Feel free to share demo-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
x
Send Feedback
Thank you! We appreciate your feedback.
Backend API
@(Html.DevExtreme().CircularGauge()
.ID("gauge")
.Scale(s => s
.StartValue(0)
.EndValue(10)
.TickInterval(2)
)
.Value(7)
.Title(t => t
.Text("Amount of Produced Gold (Kilos)")
.HorizontalAlignment(HorizontalAlignment.Center)
.VerticalAlignment(VerticalEdge.Bottom)
.Font(f => f
.Size(30)
.Color("#CFB53B")
)
.Margin(m => m
.Top(25)
)
)
)
using DevExtreme.MVC.Demos.Models.SampleData;
using System.Collections.Generic;
using System.Web.Mvc;
namespace DevExtreme.MVC.Demos.Controllers {
public class GaugesController : Controller {
public ActionResult GaugeTitleCustomized() {
return View();
}
}
}