wpf-devexpress-dot-xpf-dot-map-dot-mapbubblesettings-8a2985fe.md
Gets or sets the template of a bubble chart.
Namespace : DevExpress.Xpf.Map
Assembly : DevExpress.Xpf.Map.v25.2.dll
NuGet Package : DevExpress.Wpf.Map
public DataTemplate CustomMarkerTemplate { get; set; }
Public Property CustomMarkerTemplate As DataTemplate
| Type | Description |
|---|---|
| DataTemplate |
A System.Windows.DataTemplate object that defines the presentation of the bubble chart.
|
You can access this nested property as listed below:
| Object Type | Path to CustomMarkerTemplate |
|---|---|
| BubbleChartDataAdapter |
.BubbleSettings .CustomMarkerTemplate
|
The CustomMarkerTemplate property is used if the MapBubbleSettings.MarkerType property value equals MarkerType.Custom.
This example shows how to specify a custom marker template to be used by automatically generated bubble chart items.
To do this, create a MapBubbleSettings object and assign it to the BubbleChartDataAdapter.BubbleSettings property of the BubbleChartDataAdapter. Then, specify the MapBubbleSettings.CustomMarkerTemplate property of the object. Note that the MapBubbleSettings.MarkerType property should be set to Custom.
<dxm:BubbleChartDataAdapter.BubbleSettings>
<dxm:MapBubbleSettings MarkerType="Custom">
<dxm:MapBubbleSettings.CustomMarkerTemplate>
<DataTemplate>
<Rectangle Fill="{Binding Fill}"
Stroke="{Binding Stroke}"/>
</DataTemplate>
</dxm:MapBubbleSettings.CustomMarkerTemplate>
</dxm:MapBubbleSettings>
</dxm:BubbleChartDataAdapter.BubbleSettings>
See Also