Search Results: "Enter your URL" "Advanced" "Short URL Bookmarklet" cima

dxVectorMap export

Reference
Configures the exporting and printing features.

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

Reference
Configures a button form item.

() { // 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

Reference
This section describes properties that configure the DataSource.

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

Reference
Specifies animation properties.

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

Reference
This section describes properties that configure the ButtonGroup UI component's contents, behavior and appearance.

) { $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