Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / PointSeries Class / Size Property
Example


In This Topic
    Size Property (PointSeries)
    In This Topic
    Controls the size of the value point marks.
    Syntax
    'Declaration
     
    <CategoryAttribute("Options")>
    <DescriptionAttribute("Controls the size of the value point marks.")>
    <DefaultValueAttribute(4)>
    Public Property Size As Single
    'Usage
     
    Dim instance As PointSeries
    Dim value As Single
     
    instance.Size = value
     
    value = instance.Size
    [Category("Options")]
    [Description("Controls the size of the value point marks.")]
    [DefaultValue(4)]
    public float Size {get; set;}
    Remarks
    This property specifies the points width, height and depth dimensions. By default set to 5.0f.
    Example
    The following example increases the size of the points.
    pointSeries.Size = 5.5F
    pointSeries.Size = 5.5f;
    Requirements

    Target Platforms: 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