Xceed Toolkit for Maui v2.0 Documentation
DataPointMarkerTemplate Property
Example 


Xceed.Maui.Toolkit Assembly > Xceed.Maui.Toolkit Namespace > Series Class : DataPointMarkerTemplate Property
Gets or sets the DataTemplate that will be used to display the DataPointMarkers.
Syntax
'Declaration
 
Public Property DataPointMarkerTemplate As DataTemplate
'Usage
 
Dim instance As Series
Dim value As DataTemplate
 
instance.DataPointMarkerTemplate = value
 
value = instance.DataPointMarkerTemplate
public DataTemplate DataPointMarkerTemplate {get; set;}
Remarks
The DataPointMarkers are visual representation of DataPoints. For example, in a line Chart, multiple dots are connected by a line; these dots are DataPointMarkers that represent various DataPoints.
Example
<xctk:Series.DataPointMarkerTemplate>
  <DataTemplate>
    <xctk:Border Background="Orange"
                 CornerRadius="2"
                 HeightRequest="12"
                 WidthRequest="12"/>
  </DataTemplate>
</xctk:Series.DataPointMarkerTemplate>
Requirements

Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

Series Class
Series Members