Class ChartSeries
Represents the chart series base, which is used to visualize the data graphically
Inherited Members
Namespace: Syncfusion.WinForms.SmithChart
Assembly: Syncfusion.SfSmithChart.WinForms.dll
Syntax
public class ChartSeries
Constructors
ChartSeries()
Initializes a new instance of the ChartSeries class.
Declaration
public ChartSeries()
Properties
ArrangeByIndex
Gets or sets a value indicating whether to render the data based on the provided index order.
Declaration
public bool ArrangeByIndex { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Boolean | The data points are rendered based on the provided index when it is true; otherwise, the data points are rendered by shorting based on its resistance value. The default value is false. |
ColorModel
Gets or sets the color model for chart series.
Declaration
public ChartColorModel ColorModel { get; set; }
Property Value
| Type |
|---|
| ChartColorModel |
DataCount
Gets the number of points given as input.
Declaration
public int DataCount { get; }
Property Value
| Type |
|---|
| System.Int32 |
DataLabel
Gets or sets the data label for chart series data points.
Declaration
public DataLabel DataLabel { get; set; }
Property Value
| Type |
|---|
| DataLabel |
DataSource
Gets or sets an source used to generate Chart.
Declaration
public object DataSource { get; set; }
Property Value
| Type |
|---|
| System.Object |
Interior
Gets or sets the interior for chart series.
Declaration
public Color Interior { get; set; }
Property Value
| Type |
|---|
| System.Drawing.Color |
LegendText
Gets or sets the text that is to be associated with this series. This is the text that will be displayed by default by the legend item associated with this series.
Declaration
public string LegendText { get; set; }
Property Value
| Type |
|---|
| System.String |
LegendVisible
Gets or sets a value indicating whether the corresponding legend item is visible or not.
Declaration
public bool LegendVisible { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
MarkerBackColor
Gets or sets the marker symbol interior.
Declaration
public Color MarkerBackColor { get; set; }
Property Value
| Type |
|---|
| System.Drawing.Color |
MarkerBorderColor
Gets or sets the marker symbol stroke.
Declaration
public Color MarkerBorderColor { get; set; }
Property Value
| Type |
|---|
| System.Drawing.Color |
MarkerHeight
Gets or sets the marker symbol height.
Declaration
public float MarkerHeight { get; set; }
Property Value
| Type |
|---|
| System.Single |
MarkerImage
Gets or sets the image that can be used for custom marker.
Declaration
public Image MarkerImage { get; set; }
Property Value
| Type |
|---|
| System.Drawing.Image |
MarkerType
Gets or sets the marker type.
Declaration
public MarkerType MarkerType { get; set; }
Property Value
| Type |
|---|
| MarkerType |
MarkerVisible
Gets or sets a value indicating whether to show marker or not.
Declaration
public bool MarkerVisible { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
MarkerWidth
Gets or sets the marker symbol width.
Declaration
public float MarkerWidth { get; set; }
Property Value
| Type |
|---|
| System.Single |
Points
Gets the data point collection.
Declaration
public ChartDataPointCollection Points { get; }
Property Value
| Type |
|---|
| ChartDataPointCollection |
ReactanceMember
Gets or sets the property path of the Reactance data in data source.
Declaration
public string ReactanceMember { get; set; }
Property Value
| Type |
|---|
| System.String |
ResistanceMember
Gets or sets the property path of the Resistance data in data source.
Declaration
public string ResistanceMember { get; set; }
Property Value
| Type |
|---|
| System.String |
Tag
Gets or sets the user defined data for the series.
Declaration
public object Tag { get; set; }
Property Value
| Type |
|---|
| System.Object |
TooltipFormat
Gets or sets the format for tooltip.
Declaration
public string TooltipFormat { get; set; }
Property Value
| Type |
|---|
| System.String |
TooltipVisible
Gets or sets a value indicating whether tooltip is visible or not.
Declaration
public bool TooltipVisible { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
Visible
Gets or sets a value indicating whether series is visible or not.
Declaration
public bool Visible { get; set; }
Property Value
| Type |
|---|
| System.Boolean |