You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can use `dxo-` ('o' is a contraction of 'option') prefixed components to configure complex nested options for widgets.
341
-
The following example demonstrates how to configure the [tooltip](https://js.devexpress.com/Documentation/ApiReference/Data_Visualization_Widgets/dxTreeMap/Configuration/tooltip/) option of the dxTreeMap widget:
341
+
The following example demonstrates how to configure the [tooltip](https://js.devexpress.com/Documentation/16_2/ApiReference/Data_Visualization_Widgets/dxTreeMap/Configuration/tooltip/) option of the dxTreeMap widget:
342
342
343
343
```html
344
344
<dx-tree-map[dataSource]="treeData">
@@ -363,7 +363,7 @@ export class AppComponent {
363
363
```
364
364
365
365
You can also use `dxi-` ('i' is a contraction of 'item') prefixed components to configure complex collection options for widgets.
366
-
The following example demonstrates how to configure the [columns](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxDataGrid/Configuration/columns/) option of the dxDataGrid widget:
366
+
The following example demonstrates how to configure the [columns](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxDataGrid/Configuration/columns/) option of the dxDataGrid widget:
367
367
368
368
```html
369
369
<dx-data-grid[dataSource]="data">
@@ -389,7 +389,7 @@ export class AppComponent {
389
389
```
390
390
391
391
To configure options that can accept a configuration object or an array of configuration objects, use `dxi-` prefixed components.
392
-
The following example demonstrates how to configure the [valueAxis](https://js.devexpress.com/Documentation/ApiReference/Data_Visualization_Widgets/dxChart/Configuration/valueAxis/) option of the dxChart widget:
392
+
The following example demonstrates how to configure the [valueAxis](https://js.devexpress.com/Documentation/16_2/ApiReference/Data_Visualization_Widgets/dxChart/Configuration/valueAxis/) option of the dxChart widget:
393
393
394
394
```html
395
395
<dx-chart[dataSource]="data">
@@ -410,9 +410,9 @@ export class AppComponent {
410
410
}
411
411
```
412
412
413
-
It is possible to specify an item template inside the `dxi-` prefixed components and use Angular
413
+
It is possible to specify an item template inside the `dxi-` prefixed components and use Angular
414
414
[structural directives](https://angular.io/docs/ts/latest/guide/structural-directives.html) such as ngFor. Note that
415
-
the available item properties are described in the [Default Item Template](https://js.devexpress.com/Documentation/ApiReference/UI_Widgets/dxList/Default_Item_Template/)
415
+
the available item properties are described in the [Default Item Template](https://js.devexpress.com/Documentation/16_2/ApiReference/UI_Widgets/dxList/Default_Item_Template/)
416
416
section of a corresponding widget documentation reference.
417
417
418
418
```html
@@ -454,7 +454,7 @@ Angular has a built-in `template` directive. To define the `template` property o
454
454
455
455
You can access a DevExtreme widget instance by using the Angular 2 component query syntax and the component's
0 commit comments