Class ChartSeriesRenderer.ChartStyledPoint
This class is using for the caching points and styles.
Implements
System.ICloneable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
protected class ChartStyledPoint : ChartPointWithIndex, ICloneable
Constructors
ChartStyledPoint(ChartPoint, ChartStyleInfo, Int32)
Declaration
public ChartStyledPoint(ChartPoint cp, ChartStyleInfo info, int index)
Parameters
Type | Name | Description |
---|---|---|
ChartPoint | cp | |
ChartStyleInfo | info | |
System.Int32 | index |
ChartStyledPoint(ChartPoint, Int32)
Initialize the new instance.
Declaration
public ChartStyledPoint(ChartPoint cp, int index)
Parameters
Type | Name | Description |
---|---|---|
ChartPoint | cp | |
System.Int32 | index |
Properties
Category
Gets or sets the Y values.
Declaration
public string Category { get; set; }
Property Value
Type | Description |
---|---|
System.String | The Y values. |
IsVisible
Gets or sets a value indicating whether this point is visible.
Declaration
public bool IsVisible { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Style
Gets or sets the specified style of point.
Declaration
public ChartStyleInfo Style { get; set; }
Property Value
Type |
---|
ChartStyleInfo |
ToolTip
Gets or sets the tooltip of point.
Declaration
public string ToolTip { get; set; }
Property Value
Type |
---|
System.String |
X
Gets or sets the X.
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The X. |
Remarks
In indexed mode it's the index of real X value.
YValues
Gets or sets the Y values.
Declaration
public double[] YValues { get; set; }
Property Value
Type | Description |
---|---|
System.Double[] | The Y values. |
Methods
Clone()
Creates a new object that is a copy of the current instance.
Declaration
public ChartSeriesRenderer.ChartStyledPoint Clone()
Returns
Type | Description |
---|---|
ChartSeriesRenderer.ChartStyledPoint | A new object that is a copy of this instance. |
Explicit Interface Implementations
ICloneable.Clone()
Creates a new object that is a copy of the current instance.
Declaration
object ICloneable.Clone()
Returns
Type | Description |
---|---|
System.Object | A new object that is a copy of this instance. |
Implements
System.ICloneable