Search Results: "Enter your URL" "Advanced" "Short URL Bookmarklet" cima
- All Results 744
- Guides 308
- Reference 436
- Technical Demos
- Support Center
dxCircularGauge RangeContainer
orientation Specifies the orientation of the range container in the CircularGauge UI component. width Specifies the range container's width in...
dxFileManager Custom
(pathInfo) { // Your code goes here }, renameItem: function(item, name) { // Your code goes here }, createDirectory: function(parentDir, name) { // Your code goes here }, deleteItem: function(item) { // Your code goes here
Object Structures font
. Use the jsPDF font converter to generate a custom font object. Specify font settings and load your font file (.ttf). The converter generates a .js file with the content of your font file. Add the generated .js file or only a base64-encoded string from this file to your project to export data with your font. Refer to the font property description for the example. name The font name. style
dxChart scrollBar
The scroll bar allows a user to pan the chart. To use it, you need to enable zooming and panning in your chart. By default, the scroll bar is hidden. To make it visible, set the visible field..., this property accepts either 'left' or 'right'. visible Specifies whether the scroll bar is visible or not. NOTE Making the scroll bar visible can be useful only if panning is enabled in your chart. width
Utils events
to trigger the event. jQuery // Modular approach import { on } from "devextreme/events"; // ... on(document.getElementById("target"), "dxclick", function (event, extraParameters) { // Your code goes here }); // Non-modular approach DevExpress.events.on(document.getElementById("target"), "dxclick", function (event, extraParameters) { // Your code goes here }); Angular import { on } from