BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
@Html.EJS().LinearGauge("container2_41").Width("80%").Container(new Syncfusion.EJ2.LinearGauge.LinearGaugeContainer
{
}).Orientation(Syncfusion.EJ2.LinearGauge.Orientation.Horizontal).Axes(new List<LinearGaugeAxis> {
new Syncfusion.EJ2.LinearGauge.LinearGaugeAxis
{
LabelStyle = new Syncfusion.EJ2.LinearGauge.LinearGaugeLabel { Offset = 50,Font=new { size= "0px"}, Format = "{value}" },
// Other customization
}
}).Annotations(new List<LinearGaugeAnnotation>
{
new LinearGaugeAnnotation
{
Content="#template",
ZIndex = "1",
AxisValue = 35,
Y = -10
}
}).Render() |