Pull down to refresh...
Release to refresh...
Refreshing...
-
Data Grid
- Overview
-
Data Binding
-
Paging and Scrolling
-
Editing
-
Grouping
-
Filtering and Sorting
- Focused Row
-
Row Drag & Drop
-
Selection
-
Columns
- State Persistence
-
Appearance
-
Templates
-
Data Summaries
-
Master-Detail
-
Export to PDF
-
Export to Excel
-
Adaptability
- Keyboard Navigation
-
Pivot Grid
- Overview
-
Data Binding
-
Field Chooser
-
Features
-
Export to Excel
-
Tree List
- Overview
-
Data Binding
- Sorting
- Paging
-
Editing
- Node Drag & Drop
- Focused Row
-
Selection
-
Filtering
-
Column Customization
- State Persistence
- Adaptability
- Keyboard Navigation
-
Card View
-
Scheduler
- Overview
-
Data Binding
-
Views
-
Features
- Virtual Scrolling
-
Grouping
-
Customization
- Adaptability
-
Html Editor
-
Chat
-
Diagram
- Overview
-
Data Binding
-
Featured Shapes
-
Custom Shapes
-
Document Capabilities
-
User Interaction
- UI Customization
- Adaptability
-
Charts
- Overview
-
Data Binding
-
Area Charts
-
Bar Charts
- Bullet Charts
-
Doughnut Charts
-
Financial Charts
-
Line Charts
-
Pie Charts
-
Point Charts
-
Polar and Radar Charts
-
Range Charts
-
Sparkline Charts
-
Tree Map
-
Funnel and Pyramid Charts
- Sankey Chart
-
Combinations
-
More Features
-
Export
-
Selection
-
Tooltips
-
Zooming
-
-
Gantt
- Overview
-
Data
-
UI Customization
- Strip Lines
- Export to PDF
- Sorting
-
Filtering
-
Reporting
- AI-powered Extensions
-
Interaction
-
Report Types
-
Data binding
-
Real-life Reports
-
Layout Features
-
Report Controls
-
Web-specific Features
-
Rich Text Editor
- Overview
- Load/Save
- Document Protection
-
Templates
- Autocorrect
-
Customization
- Simple View
-
Spreadsheet
- Overview
-
Open a Document
- Export And Printing
-
Features
-
UI Customization
-
Gauges
- Overview
-
Data Binding
-
Bar Gauge
-
Circular Gauge
-
Linear Gauge
-
Navigation
- Overview
- Accordion
-
Menu
- Multi View
-
Drawer
-
Tab Panel
-
Tabs
-
Toolbar
- Stepper
- Pagination
-
Tree View
- Right-to-Left Support
-
Layout
-
Tile View
- Splitter
-
Gallery
- Scroll View
- Resizable
-
-
Editors
- Overview
- Autocomplete
-
Calendar
- Check Box
- Color Box
- Date Box
-
Date Range Box
-
Drop Down Box
-
Number Box
-
Select Box
- Switch
-
Tag Box
- Text Area
- Text Box
- Validation
- Custom Text Editor Buttons
- Right-to-Left Support
- Editor Appearance Variants
-
Forms and Multi-Purpose
- Overview
- Button Group
- Field Set
-
Filter Builder
-
Form
- Radio Group
-
Range Selector
- Numeric Scale (Lightweight)
- Numeric Scale
- Date-Time Scale (Lightweight)
- Date-Time Scale
- Logarithmic Scale
- Discrete scale
- Custom Formatting
- Use Range Selection for Calculation
- Use Range Selection for Filtering
- Image on Background
- Chart on Background
- Customized Chart on Background
- Chart on Background with Series Template
- Range Slider
- Slider
-
Sortable
-
File Management
-
File Manager
- Overview
-
File System Types
-
Customization
-
File Uploader
-
-
Actions and Lists
-
Maps
- Overview
-
Map
-
Vector Map
-
Dialogs and Notifications
-
Localization
Related Demos:
Your search did not match any results.
Loading...
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.
This demo may be temporarily unavailable due to an issue with the UNPKG service we use for resource loading. You can vote on it in the
UNPKG repositoryWe're working on a fix — sorry for the inconvenience.
Was this demo helpful?
Feel free to share demo-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Backend API
x
@(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>)
)
xxxxxxxxxx
using DevExtreme.NETCore.Demos.Models.SampleData;
using Microsoft.AspNetCore.Mvc;
namespace DevExtreme.NETCore.Demos.Controllers {
public class GaugesController : Controller {
public ActionResult GaugeTitleCustomized() {
return View();
}
}
}
xxxxxxxxxx
#gauge {
height: 440px;
width: 100%;
}
.description {
filter: drop-shadow(0 2px 2px rgb(0 0 0 / 0.16));
}