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
To specify a widget's option using a callback function (the [layer.customize](https://js.devexpress.com/Documentation/16_2/ApiReference/Data_Visualization_Widgets/dxVectorMap/Configuration/layers/#customize)
170
+
option of dxVectorMap):
171
+
172
+
```html
173
+
<dx-vector-map>
174
+
...
175
+
<dxi-layer
176
+
...
177
+
[customize]="customizeLayers">
178
+
</dxi-layer>
179
+
</dx-vector-map>
180
+
```
181
+
182
+
Note that callback functions are executed _outside_ the context of the component, but if the context is important, you can explicitly bind it to the callback function in the constructor.
0 commit comments