Bug Report T303220
Visible to All Users

Changes in custom map colorizer data are not reflected in the corresponding vector layer

created 9 years ago

Hi,

I have a VectorItemsLayer with a custom colorizer inheriting MapColorizer:

C#
public class CustomColorizer : MapColorizer { public string ColorName; public CustomColorizer(string colorName) { ColorName = colorName; } public override void ColorizeElement(IColorizerElement element) { MapBubble bubble = element as MapBubble; if (bubble != null) { if (bubble.Attributes[ColorName].Value != null) { int color = (int)bubble.Attributes[ColorName].Value; element.ColorizerColor = Color.FromArgb(color); } } } }

The data of the map is a ListSourceDataAdapter. When I modified the color of an element of the source data, the color of the bubble don't change. Is it possible to refresh the bubble color ?

Thanks,

Olivier

Answers approved by DevExpress Support

created 9 years ago

We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.

Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.

    created 9 years ago (modified 9 years ago)

    Hi Olivier,

    We have already fixed this issue and the fix will be included in the next maintenance update: Changes in map colorizer data are not reflected in the corresponding vector layer. As an immediate workaround, set the VectorItemsLayer.Data property to Null and re-assign the Data storage to force refreshing the map.

      Show previous comments (3)
      DevExpress Support Team 9 years ago

        We will examine this behavior in greater detail and check for a suitable solution. Your patience is appreciated.

        DD DD
        David Dubuffet 9 years ago

          The method Load() work with the hotfix.
          Thanks.

          DevExpress Support Team 9 years ago

            Thank you for your confirmation, Olivier.

            Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

            Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.