Your search did not match any results.
Range Selector

Custom Formatting

Documentation

This demo demonstrates the ability of the RangeSelector to set a custom format. The format of the slider marker is customized via the customizeText callback. The scale data is also formatted since the initial precision set in the data source is not suitable for properly displaying the data. So, a more appropriate precision is set for scale labels.

Backend API
Copy to CodePen
Apply
Reset
const DemoApp = angular.module('DemoApp', ['dx']); DemoApp.controller('DemoController', ($scope) => { $scope.rangeSelectorOptions = { margin: { top: 50, }, scale: { minorTickInterval: 0.001, tickInterval: 0.005, startValue: 0.004563, endValue: 0.04976, label: { format: { type: 'fixedPoint', precision: 3, }, }, }, sliderMarker: { format: { type: 'fixedPoint', precision: 4, }, customizeText() { return `${this.valueText} mg/L`; }, }, behavior: { snapToTicks: false, }, title: 'Select a Lead Concentration in Water', }; });
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>DevExtreme Demo</title> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script> <link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/22.2.6/css/dx.light.css" /> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.8.2/angular.min.js"></script> <script>window.angular || document.write(decodeURIComponent('%3Cscript src="js/angular.min.js"%3E%3C/script%3E'))</script> <script src="https://cdn3.devexpress.com/jslib/22.2.6/js/dx.all.js"></script> <link rel="stylesheet" type="text/css" href="styles.css" /> <script src="index.js"></script> </head> <body class="dx-viewport"> <div class="demo-container" ng-app="DemoApp" ng-controller="DemoController"> <div id="range-selector" dx-range-selector="rangeSelectorOptions"></div> </div> </body> </html>
#range-selector { height: 210px; }