-
Data Grids / Data Management
-
Data Grid
- Overview
-
Data Binding
-
Filtering
- Sorting
-
Editing
-
Grouping
-
Selection
- Focused Row
- Paging
-
Scrolling
-
Columns
-
Master-Detail
-
Data Summaries
-
Drag & Drop
-
Export to PDF
-
Export to Excel
- Appearance
-
Customization
- State Persistence
-
Adaptability
-
Keyboard Navigation
- Right-To-Left Support
-
Tree List
- Overview
-
Data Binding
-
Filtering
- Sorting
-
Editing
-
Selection
- Focused Row
- Paging
-
Columns
- Drag & Drop
- State Persistence
- Adaptability
-
Keyboard Navigation
-
Card View
-
Pivot Grid
- Overview
-
Data Binding
-
Field Management
-
Data Summaries
- Drill Down
- Filtering
-
Scrolling
-
Export to Excel
- Chart Integration
- Customization
- State Persistence
-
Filter Builder
-
-
Data Visualization
-
Charts
- Overview
-
Data Binding
-
Common Concepts
-
Axis
-
Aggregation
-
Tooltips
-
Selection
-
Customization
-
Zooming
-
Export
-
-
Area Charts
-
Bar Charts
- Bullet Charts
-
Doughnut Charts
-
Financial Charts
-
Funnel and Pyramid Charts
-
Line Charts
- Pareto Chart
-
Pie Charts
-
Point Charts
-
Polar and Radar Charts
-
Range Charts
- Sankey Chart
-
Sparkline Charts
-
Tree Map
-
Gauges
- Overview
-
Runtime update
-
Bar Gauge
-
Circular Gauge
-
Linear Gauge
-
Diagram
- Overview
-
Data Binding
-
Featured Shapes
-
Custom Shapes
-
Document Capabilities
-
User Interaction
- UI Customization
- Adaptability
-
-
Scheduling / Planning
-
Scheduler
- Overview
-
Data Binding
-
Views
-
Appointments
-
Timetable
- Editing
-
Grouping
- Virtual Scrolling
- Drag & Drop
-
Customization
- Adaptability
-
Gantt
- Overview
- Data Binding
-
Filtering
- Sorting
- Strip Lines
- Export to PDF
- Validation
-
Customization
-
-
Messaging
-
WYSIWYG Editor
-
Forms
-
Data Editors
- Overview
-
Common Concepts
-
Calendar
- Check Box
- Color Box
- Date Box
-
Date Range Box
-
Number Box
- Radio Group
-
Range Selector
- Range Slider
- Slider
- Switch
- Text Area
- Text Box
-
Drop-Downs
- Autocomplete
-
Drop Down Box
-
Select Box
-
Tag Box
-
Lookup
-
Buttons
-
File Upload / File Management
-
File Manager
- Overview
-
File System Types
-
Customization
-
File Uploader
-
-
Popup and Notifications
-
Navigation
- Overview
- Accordion
-
Context Menu
-
Menu
- Multi View
-
Drawer
-
Tab Panel
-
Tabs
-
Toolbar
-
Stepper
- Pagination
-
List
-
Tree View
- Right-to-Left Support
-
Layout
-
Tile View
- Splitter
-
Gallery
- Scroll View
-
-
Interactive Wrappers
-
Sortable
- Resizable
-
-
Progress Indicators
-
Maps
- Overview
-
Map
-
Vector Map
-
Data Binding
- Multiple Layers
-
Markers
- Legend
-
Zooming and Panning
-
Customization
-
-
Localization
Related Demos:
Your search did not match any results.
Gauges - Title and Center Label Customization
This demo shows how to specify a CircularGauge title and display custom labels in the component's center.
A CircularGauge title usually informs users about the nature of gauge data. To customize it, use the properties of the title configuration object:
-
Location
Use the horizontalAlignment and verticalAlignment properties to place a title on any side of your gauge. -
Font Settings
Use the font configuration object.
You can display a custom label in the center of a CircularGauge. Use the centerTemplate property. Render template content as an SVG element.
Backend API
@(Html.DevExtreme().CircularGauge()
.ID("gauge")
.Scale(s => s
.StartValue(0)
.EndValue(10)
.TickInterval(1)
.MinorTick(t => t.Visible(true))
)
.Export(e => e.Enabled(true))
.RangeContainer(r => r.BackgroundColor("#03a9f4"))
.ValueIndicator(v => v.Color("#03a9f4"))
.Value(7.78)
.Title(t => t
.Text("Gold Production (in Kilograms)")
.VerticalAlignment(VerticalEdge.Bottom)
.Font(f => f
.Size(25)
)
.Margin(m => m
.Top(25)
)
)
.CenterTemplate(@<text>
<svg>
<rect y="0" x="0" width="200" height="200" fill="transparent"></rect>
<g transform="translate(50 0)">
<rect x="0" y="0" width="100" height="70" rx="8" fill="#f2f2f2"></rect>
<text text-anchor="middle" y="27" x="50" fill="#000" font-size="20">
<tspan x="50"><%- value() %></tspan>
<tspan x="50" dy="30">kg</tspan>
</text>
</g>
<g transform="translate(43 140)">
<rect class="description" x="0" y="0" width="114" height="56" rx="8" fill="#fff"></rect>
<text text-anchor="start" y="23" x="15" fill="#000" font-size="12">
<tspan x="15">Capacity: 10 kg</tspan>
<tspan x="15" dy="20">Graduation: 10 g</tspan>
</text>
</g>
</svg>
</text>)
)
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();
}
}
}
#gauge {
height: 440px;
width: 100%;
}
.description {
filter: drop-shadow(0 2px 2px rgb(0 0 0 / 0.16));
}