Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

MapBubble Class

The class used to draw a Bubble chart on a map.

Namespace: DevExpress.XtraMap

Assembly: DevExpress.XtraMap.v24.2.dll

NuGet Package: DevExpress.Win.Map

#Declaration

public class MapBubble :
    MapShape,
    ILocatableRenderItem,
    ISupportCoordLocation,
    IPointCore,
    IMapChartDataItem,
    IMapValueDataItem,
    IMapDataItem,
    IMapChartGroupDataItem,
    ITemplateGeometryItem,
    IMapChartItem,
    IKeyColorizerElement,
    IColorizerElement,
    ISizedPointCore,
    IBubble,
    IMapItemCore

The following members return MapBubble objects:

#Remarks

The following image shows an example of a Bubble chart item.

MapBubbleExample

#Example

The following code adds a Bubble item to a vector layer’s item storage.

View Example

ItemStorage.Items.Add(new MapBubble() { Location = new GeoPoint(30, 20), Value = 400, Argument = "A", Size = 100 });

The following table lists the API members the code above uses:

Member Description
MapBubble A Bubble item.
MapBubble.Argument Specifies the Bubble item’s argument.
MapBubble.Value Specifies the Bubble item’s value.
MapBubble.Location Defines the Bubble item’s position.
MapBubble.Size Defines the Bubble item’s size in pixels.

#Implements

#Inheritance

See Also