Search Results: "Enter your URL" "Advanced" "Short URL Bookmarklet" cima
- All Results 744
- Guides 308
- Reference 436
- Technical Demos
- Support Center
dxVectorMap export
These features allow a user to export your UI component into a document or print it. When exporting is enabled, the "Exporting/Printing" button appears in the UI component. A click on it invokes a drop-down menu that lists exporting and printing commands. The following formats are supported for exporting into: PNG, PDF, JPEG, SVG and GIF. See Also exportTo(fileName, format) print
dxForm ButtonItem
() { // Implement your logic here } } }, // ... ] }); }); Angular HTMLTypeScript <dx-form ...> <dxi-item itemType... = { text: "Do Something", type: "success", onClick: function () { // Implement your logic here } }; } @NgModule({ imports
DataSource Configuration
Mapping onChanged A function that is executed after data is loaded. jQuery JavaScript var ds = new DevExpress.data.DataSource({ onChanged: function () { // Your code goes here...({ onChanged: () => { // Your code goes here } }); } } Vue App.vue <script> import DataSource from 'devextreme/data/data_source'; const ds = new
dxBarGauge animation
To make your gauge "live", enable animation for it by setting the enabled property of the animation object to true. In this instance, the gauge indicators will appear in motion. In addition, within the animation object, you can set an appropriate easing mode using the easing property and specify how long the animation should run using the duration property. jQuery index.js $(function
dxButtonGroup Configuration
) { $buttonContent.append( // Custom jQuery elements go here ) // ===== or ===== return /* your markup goes here */ } }); }); Angular app.component.htmlapp.module.ts <dx-button-group ... buttonTemplate="myTemplate"> <div *dxTemplate="let buttonData of 'myTemplate'"> <!-- your markup goes here