wpf-devexpress-dot-xpf-dot-map-5ab58c9b.md
Contains settings used to generate Bubble chart items.
Namespace : DevExpress.Xpf.Map
Assembly : DevExpress.Xpf.Map.v25.2.dll
NuGet Package : DevExpress.Wpf.Map
public class MapBubbleSettings :
MapItemSettingsBase
Public Class MapBubbleSettings
Inherits MapItemSettingsBase
The following members return MapBubbleSettings objects:
This class introduces the MapBubbleSettings.MarkerType and MapBubbleSettings.CustomMarkerTemplate properties that allow specifying the marker view.
To generate bubble charts from a data source, do the following.
MapBubbleSettings object’s properties. This object can be accessed using the BubbleChartDataAdapter.BubbleSettings property of the adapter.<dxm:VectorLayer x:Name="earthquakesLayer" ShapeFill="Orange" ToolTipEnabled="True"
ToolTipPattern="{}{Month}/{Day}/{Year}
Magnitude: %V%
Depth: {Depth}km">
<dxm:BubbleChartDataAdapter DataSource="{Binding Data}"
ItemMaxSize="60" ItemMinSize="10">
<dxm:BubbleChartDataAdapter.AttributeMappings>
<dxm:MapItemAttributeMapping Member="day" Name="Day"/>
<dxm:MapItemAttributeMapping Member="mon" Name="Month"/>
<dxm:MapItemAttributeMapping Member="yr" Name="Year"/>
<dxm:MapItemAttributeMapping Member="dep" Name="Depth"/>
</dxm:BubbleChartDataAdapter.AttributeMappings>
<dxm:BubbleChartDataAdapter.Mappings>
<dxm:MapBubbleMappingInfo Latitude="glat" Longitude="glon" Value="mag"/>
</dxm:BubbleChartDataAdapter.Mappings>
<dxm:BubbleChartDataAdapter.BubbleSettings>
<dxm:MapBubbleSettings MarkerType="Circle"/>
</dxm:BubbleChartDataAdapter.BubbleSettings>
</dxm:BubbleChartDataAdapter>
</dxm:VectorLayer>
Object DispatcherObject DependencyObject Freezable MapDependencyObject MapItemSettingsBase MapBubbleSettings
See Also