Interface IChartSeriesSummary
Contains summary information for implementing a class. In the current version, this interface is implemented by the ChartAxis class.
Namespace: Syncfusion.Windows.Forms.Chart
Assembly: Syncfusion.Chart.Base.dll
Syntax
public interface IChartSeriesSummary
Properties
MaxX
Returns the maximum X value.
Declaration
double MaxX { get; }
Property Value
Type |
---|
System.Double |
MaxY
Returns the maximum Y value.
Declaration
double MaxY { get; }
Property Value
Type |
---|
System.Double |
MinX
Returns the minimum X value.
Declaration
double MinX { get; }
Property Value
Type |
---|
System.Double |
MinY
Returns the minimum Y value.
Declaration
double MinY { get; }
Property Value
Type |
---|
System.Double |
Methods
FindMaxValue()
Finds point with maximal value.
Declaration
ChartPoint FindMaxValue()
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindMaxValue(String)
Finds point with maximal value.
Declaration
ChartPoint FindMaxValue(string useValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | useValue | The use value. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindMaxValue(String, ref Int32)
Finds point with maximal value.
Declaration
ChartPoint FindMaxValue(string useValue, ref int index)
Parameters
Type | Name | Description |
---|---|---|
System.String | useValue | Which point value to use (X, Y1, Y2,...). |
System.Int32 | index | Index to start looking from. Returns index of found point or -1. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindMaxValue(String, ref Int32, Int32)
Finds point with maximal value.
Declaration
ChartPoint FindMaxValue(string useValue, ref int index, int endIndex)
Parameters
Type | Name | Description |
---|---|---|
System.String | useValue | Which point value to use (X, Y1, Y2,...). |
System.Int32 | index | Index to start looking from. Returns index of found point or -1. |
System.Int32 | endIndex | The Index where the search is end. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindMinValue()
Finds point with minimal value.
Declaration
ChartPoint FindMinValue()
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindMinValue(String)
Finds point with minimal value.
Declaration
ChartPoint FindMinValue(string useValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | useValue | The use value. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindMinValue(String, ref Int32)
Finds point with minimal value.
Declaration
ChartPoint FindMinValue(string useValue, ref int index)
Parameters
Type | Name | Description |
---|---|---|
System.String | useValue | Which point value to use (X, Y1, Y2,...). |
System.Int32 | index | Index to start looking from. Returns index of found point or -1. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindMinValue(String, ref Int32, Int32)
Finds point with minimal value.
Declaration
ChartPoint FindMinValue(string useValue, ref int index, int endIndex)
Parameters
Type | Name | Description |
---|---|---|
System.String | useValue | Which point value to use (X, Y1, Y2,...). |
System.Int32 | index | Index to start looking from. Returns index of found point or -1. |
System.Int32 | endIndex | The Index where the search is end.. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindValue(Double)
Finds point by specified value.
Declaration
ChartPoint FindValue(double value)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | The value. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindValue(Double, String)
Finds point by specified value.
Declaration
ChartPoint FindValue(double value, string useValue)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | The value. |
System.String | useValue | The use value. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindValue(Double, String, ref Int32)
Finds point by specified value.
Declaration
ChartPoint FindValue(double value, string useValue, ref int index)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | The value. |
System.String | useValue | Which point value to use (X, Y1, Y2,...). |
System.Int32 | index | Index to start looking from. Returns index of found point or -1. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
FindValue(Double, String, ref Int32, Int32)
Finds point by specified value.
Declaration
ChartPoint FindValue(double value, string useValue, ref int index, int endIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Double | value | The value. |
System.String | useValue | Which point value to use (X, Y1, Y2,...). |
System.Int32 | index | Index to start looking from. Returns index of found point or -1. |
System.Int32 | endIndex | The Index where the search is end. |
Returns
Type | Description |
---|---|
ChartPoint | Found point or null. |
GetYPercentage(Int32)
Gets the Y percentage.
Declaration
double GetYPercentage(int pointIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | pointIndex | Index of the point. |
Returns
Type |
---|
System.Double |
Remarks
Percentages computes for positive values only.
GetYPercentage(Int32, Int32)
Gets the Y percentage.
Declaration
double GetYPercentage(int pointIndex, int yIndex)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | pointIndex | Index of the point. |
System.Int32 | yIndex | Index of the y. |
Returns
Type |
---|
System.Double |
Remarks
Percentages computes for positive values only.
Refresh()
Refreshes summary information.
Declaration
void Refresh()