Update 20241112
This commit is contained in:
@@ -3399,6 +3399,333 @@
|
||||
<param name="arg">arguments</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeXLookUp(System.String)">
|
||||
<summary>
|
||||
Searches a range or an array, and then returns the item corresponding to the first match it finds.
|
||||
If no match exists, then XLOOKUP can return the closest (approximate) match.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "lookup_value, lookup_array, return_array, if_not_found, match_mode, search_mode".
|
||||
<list type="bullet">
|
||||
<item><description><c>lookup_value</c>: The value to search for.</description></item>
|
||||
<item><description><c>lookup_array</c>: The array or range of cells to search within.</description></item>
|
||||
<item><description><c>return_array</c>: The array or range of cells from which to return a value.</description></item>
|
||||
<item><description><c>if_not_found</c>: The value to return if no match is found.</description></item>
|
||||
<item>
|
||||
<description><c>match_mode</c>: [Optional] The match type (default is 0):</description>
|
||||
<list type="bullet">
|
||||
<item><description>0 for exact match (default)</description></item>
|
||||
<item><description>-1 for exact match or next smaller item</description></item>
|
||||
<item><description>1 for exact match or next larger item</description></item>
|
||||
<item><description>2 for wildcard match</description></item>
|
||||
</list>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>search_mode</c>: [Optional] The search mode (default is 1):</description>
|
||||
<list type="bullet">
|
||||
<item><description>1 for search from first to last (default)</description></item>
|
||||
<item><description>-1 for search from last to first</description></item>
|
||||
<item><description>2 for binary search ascending</description></item>
|
||||
<item><description>-2 for binary search descending</description></item>
|
||||
</list>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>The item corresponding to the first match it finds. If no match exists, then XLOOKUP can return the closest (approximate) match.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.GetMatchedValue(System.String,System.String,System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Calculate and retrun the matched value based on match mode and search mode
|
||||
</summary>
|
||||
<param name="lookupValue">The value to search </param>
|
||||
<param name="lookupRange">The range or array where to search.</param>
|
||||
<param name="returnArray">The range or array from which to return values.</param>
|
||||
<param name="notFound">The value to return if no match is found. If omitted, an #N/A error is returned.</param>
|
||||
<param name="matchMode">The match type to perform:</param>
|
||||
<param name="searchMode">The direction of search</param>
|
||||
<returns>The matched value</returns>
|
||||
<exception cref="T:System.ArgumentException"></exception>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ReorderCellsColumnWise(System.String[])">
|
||||
<summary>
|
||||
Returns the range of cells as an array by scanning column wise
|
||||
</summary>
|
||||
<param name="cells">cell range</param>
|
||||
<returns>array of cells</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CalculateLookupRange(System.String)">
|
||||
<summary>
|
||||
Convert multi criteria lookup range to single range
|
||||
</summary>
|
||||
<param name="lookupRange">multicriteria lookup range</param>
|
||||
<returns>return calculated lookup range</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindMatchFromRange(System.String,System.String[],System.String)">
|
||||
<summary>
|
||||
Match the lookup value and return the index based on match mode
|
||||
</summary>
|
||||
<returns>the matched index</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindMatchMode(System.String)">
|
||||
<summary>
|
||||
Calculate and get the matchMode value from the argument
|
||||
</summary>
|
||||
<param name="arg">argument</param>
|
||||
<returns>the matchMode value</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindSearchMode(System.String)">
|
||||
<summary>
|
||||
Calculate and get the SearchMode value from the argument
|
||||
</summary>
|
||||
<param name="arg">argument</param>
|
||||
<returns>the SearchMode value</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ValidateArgumentType(System.String,Syncfusion.OfficeChart.Calculate.CalcEngine.FormulaArgumentType)">
|
||||
<summary>
|
||||
Validate argument type for the possible cases for error string
|
||||
</summary>
|
||||
<param name="arg"> argument</param>
|
||||
<param name="type">>The formula's argument typ</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeXMatch(System.String)">
|
||||
<summary>
|
||||
Returns the relative position of an item in an array or range of cells.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "lookup_value,lookup_array,match_mode,search_mode".
|
||||
<list type="bullet">
|
||||
<item><description><c>lookup_value</c>: The value to search for.</description></item>
|
||||
<item><description><c>lookup_array</c>: The array or range of cells to search within, provided as a comma-separated string of values.</description></item>
|
||||
<item>
|
||||
<description><c>match_mode</c>: [Optional] The match type (default is 0):</description>
|
||||
<list type="bullet">
|
||||
<item><description>0 for exact match (default)</description></item>
|
||||
<item><description>-1 for exact match or next smallest item</description></item>
|
||||
<item><description>1 for exact match or next largest item</description></item>
|
||||
<item><description>2 for wildcard match</description></item>
|
||||
</list>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>search_mode</c>: [Optional] The search mode (default is 1):</description>
|
||||
<list type="bullet">
|
||||
<item><description>1 for search from first to last (default)</description></item>
|
||||
<item><description>-1 for search from last to first</description></item>
|
||||
<item><description>2 for binary search ascending</description></item>
|
||||
<item><description>-2 for binary search descending</description></item>
|
||||
</list>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>The relative position of an item in an array or range of cells.</returns>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindMatchIndex(System.String,System.String,System.String,System.String)" -->
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.SortDescendingOrder(System.String[])">
|
||||
<summary>
|
||||
Sort the lookup array in DescendingOrder
|
||||
</summary>
|
||||
<returns> the array in DescendingOrder</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.GetsortedArray(System.String[])">
|
||||
<summary>
|
||||
Sort the lookup array in AscendingOrder
|
||||
</summary>
|
||||
<returns> the array in AscendingOrder</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindMatch(System.String,System.String[],System.String)">
|
||||
<summary>
|
||||
Match the lookup value and return the index based on match mode
|
||||
</summary>
|
||||
<returns>the matched index</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CheckForMatch(System.String,System.String)">
|
||||
<summary>
|
||||
check and match the lookup value when its contains "?"
|
||||
</summary>
|
||||
<returns>TTrue when match or false</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeFloorMath(System.String)">
|
||||
<summary>
|
||||
Rounds a number down to the nearest integer or to the nearest multiple of significance.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "number, significance, mode".
|
||||
<list type="bullet">
|
||||
<item>
|
||||
<description><c>number</c>: The number to be rounded down.</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>significance</c>: [optional] The multiple to which you want to round.</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>mode</c>: [optional] The direction (toward or away from 0) to round negative numbers.</description>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>A number rounded down to the nearest integer or to the nearest multiple of significance.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.validateArg(System.String)">
|
||||
<summary>
|
||||
Validate and retrun the argument as double value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FloorMathArrayCalculation(System.String[])">
|
||||
<summary>
|
||||
Calculate array format argument value.
|
||||
</summary>
|
||||
<param name="range"></param>
|
||||
<returns>Return calculated array format argument value for interior and direct FloorMath formula </returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ParseArgAsDouble(System.String,System.String,System.String,System.Double@,System.Double@,System.Double@)">
|
||||
<summary>
|
||||
convert string values(number,sign,mode) to double value
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ParseArgAsDouble(System.String,System.String,System.Double@,System.Double@)">
|
||||
<summary>
|
||||
convert string values(number,sign) to double value
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CalculateFloorMathValue(System.Double,System.Double,System.Double)">
|
||||
<summary>
|
||||
Calculated FloorMath value for the given Input.
|
||||
</summary>
|
||||
<returns> Return round a number down to the nearest integer or to the nearest multiple of significance.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeFloorPrecise(System.String)">
|
||||
<summary>
|
||||
Computes and returns a number that is rounded down to the nearest integer or to the nearest multiple of significance.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "number, significance".
|
||||
<list type="bullet">
|
||||
<item>
|
||||
<description><c>number</c>: The value to be rounded.</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>significance</c>: [optional] The multiple to which the number is to be rounded.</description>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>A number that is rounded down to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded down. However, if the number or the significance is zero, zero is returned.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CalculateFloorPrecise(System.Double,System.Double)">
|
||||
<summary>
|
||||
Returns the Calculated FloorPrecise value for the given Input.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CalculateCeilingValue(System.Double,System.Double)">
|
||||
<summary>
|
||||
Returns the Calculated CeilingPrecise value for the given Input.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FloorPreciseArrayCalculation(System.String[])">
|
||||
<summary>
|
||||
Calculate array format argument value.
|
||||
</summary>
|
||||
<param name="range"></param>
|
||||
<returns>Return calculated array format argument value for interior and direct FloorPrecise formula. </returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.IsoCeilingArrayCalculation(System.String[])">
|
||||
<summary>
|
||||
Calculate array format argument value.
|
||||
</summary>
|
||||
<param name="range"></param>
|
||||
<returns>calculated array format argument value for interior and direct IsoCeiling formula.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CeilingPreciseArrayCalculation(System.String[])">
|
||||
<summary>
|
||||
Calculate array format argument value.
|
||||
</summary>
|
||||
<param name="range"></param>
|
||||
<returns>calculated array format argument value for interior and direct CeilingPrecise formula.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeIsoCeiling(System.String)">
|
||||
<summary>
|
||||
Computes and returns a number that is rounded up to the nearest integer or to the nearest multiple of significance.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "number, significance".
|
||||
<list type="bullet">
|
||||
<item>
|
||||
<description><c>number</c>: The value to be rounded.</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>significance</c>: [optional] The multiple to which the number is to be rounded. The default value is 1.</description>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>A number that is rounded up to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up. However, if the number or the significance is zero, zero is returned. This follows the ISO 8601 standard.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeCeilingPrecise(System.String)">
|
||||
<summary>
|
||||
Computes and returns a number that is rounded up to the nearest integer or to the nearest multiple of significance.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "number, significance".
|
||||
<list type="bullet">
|
||||
<item>
|
||||
<description><c>number</c>: The value to be rounded.</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>significance</c>: [optional] The multiple to which the number is to be rounded. The default value is 1.</description>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>A number that is rounded up to the nearest integer or to the nearest multiple of significance. Regardless of the sign of the number, the number is rounded up. However, if the number or the significance is zero, zero is returned.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeVStack(System.String)">
|
||||
<summary>
|
||||
This function appends arrays vertically and in sequence to return a larger array.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "array1,[array2],..."
|
||||
<list type="bullet">
|
||||
<item><description><c>array1, array2, ...</c>: The arrays to append.</description></item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>A single array that has as many columns as all of the source arrays combined and as many rows as the tallest of the source arrays.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeHStack(System.String)">
|
||||
<summary>
|
||||
This function appends arrays horizontally and in sequence to return a larger array.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "array1,[array2],..."
|
||||
<list type="bullet">
|
||||
<item><description><c>array1, array2, ...</c>: The arrays to append.</description></item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>A single array that has as many columns as all of the source arrays combined and as many rows as the tallest of the source arrays.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ValidateStackArgs(System.String,System.String@)">
|
||||
<summary>
|
||||
Validate the argument for VStack and HStack formula and return array list.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ConvertArrayToString(System.String[0:,0:],System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Compute and return appended array as string value for VStack and HStack formula.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.VerticalStackValue(System.Collections.Generic.List{System.String})">
|
||||
<summary>
|
||||
Compute and append array vertically and return array as string value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.HorizontalStackValue(System.Collections.Generic.List{System.String})">
|
||||
<summary>
|
||||
Compute and append array horizontally and return array as string value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.Covariance(System.Double[],System.Double[])">
|
||||
<summary>
|
||||
Returns the sample covariance between two arrays.
|
||||
@@ -4991,6 +5318,490 @@
|
||||
<param name="argList">first strring, second string and starting position</param>
|
||||
<returns>index of the string</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindUniqueElement(System.String[0:,0:],System.String,System.String)">
|
||||
<summary>
|
||||
Find and return list of unique elements for two dimentional array elements.
|
||||
</summary>
|
||||
<returns>return list of unique elements.</returns>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeUnique(System.String)" -->
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CheckForErrorValue(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean@)">
|
||||
<summary>
|
||||
Validate and return the error string for TextBefore/TextAfter formula.
|
||||
</summary>
|
||||
<returns>validated argument</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeTextAfter(System.String)">
|
||||
<summary>
|
||||
This function returns text that occurs after given character or string.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "text,delimiter,instance_num, match_mode, match_end, if_not_found".
|
||||
<list type="bullet">
|
||||
<item><description><c>text</c>The text you are searching within. Wildcard characters not allowed.</description></item>
|
||||
<item><description><c>delimiter</c>The text that marks the point after which you want to extract.</description></item>
|
||||
<item><description><c>instance_num</c>[Optional] The instance of the delimiter after which you want to extract the text.(default is 1).</description></item>
|
||||
<item><description><c>match_mode</c>[Optional] Determines whether the text search is case-sensitive. The default is case-sensitive.</description>
|
||||
<list type="bullet">
|
||||
<item><description>0 - Case sensitive.</description></item>
|
||||
<item><description>1 - Case insensitive.</description></item>
|
||||
</list>
|
||||
</item>
|
||||
<item><description><c>match_end</c>[Optional] Treats the end of text as a delimiter. By default, the text is an exact match.</description>
|
||||
<list type="bullet">
|
||||
<item><description>0 - Don't match the delimiter against the end of the text.</description></item>
|
||||
<item><description> 1 - Match the delimiter against the end of the text.</description></item>
|
||||
</list>
|
||||
</item>
|
||||
<item><description><c>if_not_found</c>[Optional] Value returned if no match is found. By default, #N/A is returned.</description></item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>The text that occurs after given character or string.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.GetValueForArg(System.String[],System.String@,System.String@,System.String@,System.String@,System.String@,System.String@)">
|
||||
<summary>
|
||||
Validate and get the argument for TextAfter/TextBefore formula.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeTextBefore(System.String)">
|
||||
<summary>
|
||||
This function returns text that occurs text that occurs before a given character or string
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "text,delimiter,instance_num, match_mode, match_end, if_not_found"
|
||||
<list type="bullet">
|
||||
<item><description><c>text</c>The text you are searching within. Wildcard characters not allowed.</description></item>
|
||||
<item><description><c>delimiter</c>The text that marks the point after which you want to extract.</description></item>
|
||||
<item><description><c>instance_num</c>[Optional] The instance of the delimiter after which you want to extract the text.(default is 1).</description></item>
|
||||
<item><description><c>match_mode</c>[Optional] Determines whether the text search is case-sensitive. The default is case-sensitive.</description>
|
||||
<list type="bullet">
|
||||
<item><description>0 - Case sensitive.</description></item>
|
||||
<item><description>1 - Case insensitive.</description></item>
|
||||
</list>
|
||||
</item>
|
||||
<item><description><c>match_end</c>[Optional] Treats the end of text as a delimiter. By default, the text is an exact match.</description>
|
||||
<list type="bullet">
|
||||
<item><description>0 - Don't match the delimiter against the end of the text.</description></item>
|
||||
<item><description> 1 - Match the delimiter against the end of the text.</description></item>
|
||||
</list>
|
||||
</item>
|
||||
<item><description><c>if_not_found</c>[Optional] Value returned if no match is found. By default, #N/A is returned.</description></item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>The text that occurs before a given character or string.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindIndexOfCharacterFromEnd(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Find index to returns text when delimiter is character and instance_num is negative that appears after a given character.
|
||||
</summary>
|
||||
<param name="text">The text you are searching within</param>
|
||||
<param name="delimiter">The text that marks the point after which you want to extract.</param>
|
||||
<param name="instance_num">The instance of the delimiter after which you want to extract the text.By default, instance_num = 1</param>
|
||||
<returns>The index to returns text that appears after a given character.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindIndexOfWordFromEnd(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Find index to returns text when delimiter is word and instance_num is negative that appears after a given character.
|
||||
</summary>
|
||||
<param name="text">The text you are searching within</param>
|
||||
<param name="delimiter">The text that marks the point after which you want to extract.</param>
|
||||
<param name="instance_num">The instance of the delimiter after which you want to extract the text.By default, instance_num = 1.</param>
|
||||
<returns>The index to returns text that appears after a given word.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindIndexOfWord(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Find index to returns text when delimiter is word and instance_num is positive that appears after a given character.
|
||||
</summary>
|
||||
<param name="text">The text you are searching within.</param>
|
||||
<param name="delimiter">The text that marks the point after which you want to extract.</param>
|
||||
<param name="instance_num">The instance of the delimiter after which you want to extract the text.By default, instance_num = 1.</param>
|
||||
<returns>The index to returns text that appears after a given word.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.FindIndexOfCharacter(System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Find index to returns text when delimiter is character and instance_num is positive that appears after a given character.
|
||||
</summary>
|
||||
<param name="text">The text you are searching within</param>
|
||||
<param name="delimiter">The text that marks the point after which you want to extract.</param>
|
||||
<param name="instance_num">The instance of the delimiter after which you want to extract the text.By default, instance_num = 1.</param>
|
||||
<returns>The index to returns text that appears after a given character.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeValueToText(System.String)">
|
||||
<summary>
|
||||
This function returns text from any specified value. It passes text values unchanged, and converts non-text values to text.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "value, format"
|
||||
<list type="bullet">
|
||||
<item><description><c>value</c>The value to return as text.</description></item>
|
||||
<item><description><c>format</c>The format of the returned data.[optional]</description>
|
||||
<list type="bullet">
|
||||
<item><description>0 - Concise format that is easy to read. The text returned will be the same as the text rendered in a cell that has general formatting applied.</description></item>
|
||||
<item><description>1 - Strict format that includes escape characters and row delimiters. Generates a string that can be parsed when entered into the formula bar. Encapsulates returned strings in quotes except for Booleans, Numbers and Errors.</description></item>
|
||||
</list>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>Text from any specified value</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ValueToTextCalculation(System.String,System.String)">
|
||||
<summary>
|
||||
Returns the text from any specified value.
|
||||
</summary>
|
||||
<param name="value">The value to return as text.</param>
|
||||
<param name="format">The format of the returned data.</param>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ValueToTextArrayCalculation(System.String[])">
|
||||
<summary>
|
||||
Calculate array format argument value.
|
||||
</summary>
|
||||
<returns>Return calculated array format argument value for interior and direct VALUETOTEXT formula.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeArrayToText(System.String)">
|
||||
<summary>
|
||||
This function returns text from any specified array/range. It passes text values of array unchanged, and converts non-text values to text.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "array, format"
|
||||
<list type="bullet">
|
||||
<item><description><c>array</c>The array to return as text.</description></item>
|
||||
<item><description><c>format</c>The format of the returned data.[optional]</description>
|
||||
<list type="bullet">
|
||||
<item><description>0 - Concise format that is easy to read.
|
||||
The text returned will be the same as the text rendered in a cell that has general formatting applied.
|
||||
</description></item>
|
||||
<item><description>1 - Strict format that includes escape characters and row delimiters.
|
||||
Generates a string that can be parsed when entered into the formula bar.
|
||||
Encapsulates returned strings in quotes except for Booleans, Numbers and Errors.
|
||||
</description></item>
|
||||
</list>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>Text from the specified array/range.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ConvertArrayToTextValue(System.String,System.String)">
|
||||
<summary>
|
||||
Calculates the final string of the specified condition in the formula from the sepcified range of cells.
|
||||
</summary>
|
||||
<returns>an array of text values from any specified range.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ConvertToStructuredData(System.Collections.Generic.List{System.String},System.Int32)">
|
||||
<summary>
|
||||
Converts a flat list of cell data into a structured list of rows and columns.
|
||||
</summary>
|
||||
<param name="cellData">List of cell data.</param>
|
||||
<param name="numberOfColumns">Number of columns in the data.</param>
|
||||
<returns>Structured data as a list of lists.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ArrayToTextCalculation(System.String,System.String)">
|
||||
<summary>
|
||||
Returns the text from any specified value.
|
||||
</summary>
|
||||
<param name="value">The value to return as text.</param>
|
||||
<param name="format">The format of the returned data.</param>
|
||||
<returns>string value after checking with the conditions.</returns>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeToCol(System.String)" -->
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CheckingErrorStringsOfArgument(System.String@,System.String@,System.String@,System.String)">
|
||||
<summary>
|
||||
Validates the argument list and extracts the range, ignore, and scanByColumn values.
|
||||
</summary>
|
||||
<param name="ignore">Output parameter that holds the value to be ignored.</param>
|
||||
<param name="scanByColumn">Output parameter that indicates whether to scan by column.</param>
|
||||
<param name="range">Output parameter that holds the range value.</param>
|
||||
<param name="args">The argument list string to be parsed and validated.</param>
|
||||
<returns>
|
||||
Returns an error string if there is any validation error, otherwise returns an empty string.
|
||||
</returns>
|
||||
<exception cref="T:System.ArgumentException">Thrown when there is an invalid number of arguments or invalid argument value.</exception>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ConvertValuesOfArray(System.String,System.String,System.String,System.Boolean)">
|
||||
<summary>
|
||||
Converts the values of a given array range to a single column/row format.
|
||||
</summary>
|
||||
<param name="range">The range of the array to be converted.</param>
|
||||
<param name="ignore">A value indicating whether to ignore certain cells (e.g., blanks or errors).</param>
|
||||
<param name="scanByColumn">A boolean indicating whether to scan the range by columns (true) or by rows (false).</param>
|
||||
<returns>A string representing the values of the array converted to a single column/row, separated by the defined separator.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CheckConditionsForValue(System.String,System.String,System.Collections.Generic.List{System.String})">
|
||||
<summary>
|
||||
Checks the conditions of the given cell value in the array based on specified criteria.
|
||||
</summary>
|
||||
<param name="cellValue">The value of the cell to be checked.</param>
|
||||
<param name="ignore">A value indicating whether to ignore certain cells (e.g., blanks or errors).</param>
|
||||
<param name="values">A list to which the cell value will be added if it meets the conditions.</param>
|
||||
<returns>A boolean indicating whether the cell value was added to the list.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.GetValuesOfArray(System.Int32@,System.Int32@,System.Collections.Generic.List{System.String}@,System.String)">
|
||||
<summary>
|
||||
Retrieves the totalnumber of columns, totalnumber of rows, and array values from the given array/range.
|
||||
</summary>
|
||||
<param name="numberOfColumns">Output parameter for the total number of columns.</param>
|
||||
<param name="numberOfRows">Output parameter for the total number of rows.</param>
|
||||
<param name="arrayValues">Output parameter for the list of array values.</param>
|
||||
<param name="args">Input arguments, including range or array values.</param>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeToRow(System.String)" -->
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeChooseCols(System.String)">
|
||||
<summary>
|
||||
Returns specified columns from an array or range.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the array or range and the column indexes separated by commas.
|
||||
The format should be: array, col_num1, [col_num2], ...
|
||||
<list type="bullet">
|
||||
<item>
|
||||
<description><c>array</c>: The source array or range.</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>col_num1</c>: An integer specifying the first column to return.</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>[col_num2]</c>: [optional] Index numbers of additional columns to return.</description>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>A formatted string representing the specified columns from the array or range.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.GetIndexes(System.String[],System.Int32,System.Int32,System.Boolean,System.Int32[]@)">
|
||||
<summary>
|
||||
Returns the row/column indexes as a string array from the argument.
|
||||
</summary>
|
||||
<param name="args">The arguments specifying the range and indexes to choose.</param>
|
||||
<param name="totalNumberOfColumns">The total number of columns in the range.</param>
|
||||
<param name="totalNumberOfRows">The total number of rows in the range.</param>
|
||||
<param name="isFormulaChooseColumn">A boolean indicating whether the indexes are for columns (true) or rows (false).</param>
|
||||
<param name="columnIndexes">An output parameter that will contain the computed indexes as an integer array.</param>
|
||||
<returns>A string indicating any error that occurred during the computation; otherwise, an empty string.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ChooseValuesFromArray(System.String,System.Int32[],System.Int32,System.Int32,System.Collections.Generic.List{System.String},System.Boolean)">
|
||||
<summary>
|
||||
Computes and returns a formatted string of column or row values from a range based on specified indexes.
|
||||
</summary>
|
||||
<param name="range">The range of the array to be processed.</param>
|
||||
<param name="columnIndexes">An array of indexes specifying the columns or rows to be chosen.</param>
|
||||
<param name="totalNumberOfColumns">The total number of columns in the range.</param>
|
||||
<param name="totalNumberOfRows">The total number of rows in the range.</param>
|
||||
<param name="arrayValues">A list of the values in the array.</param>
|
||||
<param name="isFormulaChooseColumn">A boolean indicating whether the indexes are for columns (true) or rows (false).</param>
|
||||
<returns>A formatted string representing the chosen column or row values, separated by the defined separator.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeChooseRows(System.String)">
|
||||
<summary>
|
||||
Returns specified rows from an array or range.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the array or range and the row indexes separated by commas.
|
||||
The format should be: array, row_num1, [row_num2], ...
|
||||
<list type="bullet">
|
||||
<item>
|
||||
<description><c>array</c>: The source array or range.</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>row_num1</c>: An integer specifying the first row to return.</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>[row_num2]</c>: [optional] Index numbers of additional rows to return.</description>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>A formatted string representing the specified rows from the array or range.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ConvertToStructuredDataByColumns(System.Collections.Generic.List{System.String},System.Int32)">
|
||||
<summary>
|
||||
Converts a flat list of cell data into a structured list of columns.
|
||||
</summary>
|
||||
<param name="cellData">List of cell data</param>
|
||||
<param name="numberOfColumns">Number of columns in the data</param>
|
||||
<returns>Structured data as a list of lists by columns</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeSequence(System.String)">
|
||||
<summary>
|
||||
This function generates a list of sequential numbers in an array.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "rows, columns, start, step".
|
||||
<list type="bullet">
|
||||
<item><description><c>rows</c>: The number of rows to fill.</description></item>
|
||||
<item><description><c>columns</c>: The number of columns to fill. If omitted, defaults to 1 column.</description></item>
|
||||
<item><description><c>start</c>: The starting number in the sequence. If omitted, defaults to 1.</description></item>
|
||||
<item>
|
||||
<description><c>step</c>: The increment for each subsequent value in the sequence. It can be positive or negative.</description>
|
||||
<list type="bullet">
|
||||
<item><description>If positive, subsequent values increase, creating an ascending sequence.</description></item>
|
||||
<item><description>If negative, subsequent values decrease, producing a descending sequence.</description></item>
|
||||
<item><description>If omitted, the step defaults to 1.</description></item>
|
||||
</list>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>Generates and returns an array of sequential numbers.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.CreateSequence(System.Int32,System.Int32,System.Int32,System.Int32)">
|
||||
<summary>
|
||||
Generate an array of sequential number
|
||||
</summary>
|
||||
<returns>Generate and return an array of sequential number</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeTextSplit(System.String)">
|
||||
<summary>
|
||||
This function splits text strings by using column and row delimiters.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "text, col_delimiter, row_delimiter, ignore_empty, match_mode, pad_with".
|
||||
<list type="bullet">
|
||||
<item><description><c>text</c>: The text you want to split.</description></item>
|
||||
<item><description><c>col_delimiter</c>: The text that marks the point where to spill the text across columns.</description></item>
|
||||
<item><description><c>row_delimiter</c> [optional]: The text that marks the point where to spill the text down rows.</description></item>
|
||||
<item>
|
||||
<description><c>ignore_empty</c> [optional]: Specifies whether to ignore empty values or not. Defaults to FALSE.</description>
|
||||
<list type="bullet">
|
||||
<item><description>FALSE (default) - create empty cells for consecutive delimiters without a value in-between.</description></item>
|
||||
<item><description>TRUE - ignore empty values, i.e., don't create empty cells for two or more consecutive delimiters.</description></item>
|
||||
</list>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>match_mode</c> [optional]: Determines case-sensitivity for the delimiter. Enabled by default.</description>
|
||||
<list type="bullet">
|
||||
<item><description>0 (default) - case-sensitive.</description></item>
|
||||
<item><description>1 - case-insensitive.</description></item>
|
||||
</list>
|
||||
</item>
|
||||
<item><description><c>pad_with</c> [optional]: A value to use in place of missing values in two-dimensional arrays. The default is a #N/A error.</description></item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>Splitted text strings by using column and row delimiters.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeDelimiters(System.String)">
|
||||
<summary>
|
||||
Compute and return delimters when delimter contains multiple character{",",";"}.
|
||||
</summary>
|
||||
<returns>delimters when contains multiple character.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.SplitText(System.String,System.String,System.String,System.String,System.String,System.String[],System.Int32@,System.Collections.Generic.List{System.Collections.Generic.List{System.String}}@)">
|
||||
<summary>
|
||||
splits text strings by a given row and column delimiter across columns or/and rows.
|
||||
</summary>
|
||||
<param name="text">the text to split</param>
|
||||
<param name="rowDelimiter">a character(s) that indicates where to split the text across rows.</param>
|
||||
<param name="colDelimiter">a character(s) that indicates where to split the text across columns.</param>
|
||||
<param name="ignoreEmpty">specifies whether to ignore empty values or not.</param>
|
||||
<param name="Match_mode">determines case-sensitivity for the delimiter.</param>
|
||||
<param name="columns">a value to use in place of missing values in two-dimensional arrays.</param>
|
||||
<param name="maxCol">maxColumn count.</param>
|
||||
<param name="result">list of splitted text.</param>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeColumnsDelimiter(System.String,System.String,System.String,System.String,System.String[],System.Int32@,System.Collections.Generic.List{System.Collections.Generic.List{System.String}}@)">
|
||||
<summary>
|
||||
splits text strings by a column delimiter across columns.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeTake(System.String)">
|
||||
<summary>
|
||||
This function retrieves a specified subset of values from a given array or range based on the number of rows and/or columns provided.
|
||||
</summary>
|
||||
<param name="argList">
|
||||
A string containing the arguments separated by commas in the following format:
|
||||
<list type="bullet">
|
||||
<item>
|
||||
<description><c>array</c>: The array or range from which to retrieve values.
|
||||
</description>
|
||||
</item>
|
||||
<item>
|
||||
<description><c>rows</c>: [Optional] The number of rows to return.
|
||||
A positive value returns rows from the start of the array, while a negative value returns rows from the end.
|
||||
If omitted, <c>columns</c> must be provided.
|
||||
</description></item>
|
||||
<item>
|
||||
<description><c>columns</c>: [Optional] The number of columns to return.
|
||||
A positive integer returns columns from the start of the array, while a negative integer returns columns from the end.
|
||||
If omitted, <c>rows</c> must be provided.
|
||||
</description></item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>A formatted string containing the subset of values from the specified array or range. If the input is invalid, an appropriate error message is returned.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.RetrieveValuesFromRange(System.String,System.String,System.String,System.String[])">
|
||||
<summary>
|
||||
Retrieves values from the given range based on the specified rows and columns.
|
||||
</summary>
|
||||
<param name="range">The range of cells.</param>
|
||||
<param name="rows">The number of rows to retrieve.</param>
|
||||
<param name="columns">The number of columns to retrieve.</param>
|
||||
<returns>A string containing the retrieved values, separated by a specified separator.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeDrop(System.String)">
|
||||
<summary>
|
||||
This function removes the specified number of rows and/or columns from the start or end of an array or range.
|
||||
</summary>
|
||||
<param name="argList">
|
||||
A string containing the arguments separated by commas. The format should be: array, rows, [columns].
|
||||
<list type="bullet">
|
||||
<item>
|
||||
<description>
|
||||
<c>array</c>: The array or range from which values are to be removed.
|
||||
</description>
|
||||
</item>
|
||||
<item>
|
||||
<description>
|
||||
<c>rows</c>: [Optional] The number of rows to remove. A positive value removes rows from the start of the array,
|
||||
and a negative value removes rows from the end of the array. If omitted, <c>columns</c> must be provided.
|
||||
</description>
|
||||
</item>
|
||||
<item>
|
||||
<description>
|
||||
<c>columns</c>: [Optional] The number of columns to remove. A positive integer removes columns from the start of the array,
|
||||
and a negative integer removes columns from the end of the array. If omitted, <c>rows</c> must be provided.
|
||||
</description>
|
||||
</item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>
|
||||
A formatted string representing the array after removing the specified rows and/or columns.
|
||||
If the inputs are invalid, an error message is returned.
|
||||
</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.DropValuesFromArray(System.String,System.String,System.String,System.Int32,System.Int32,System.Collections.Generic.List{System.String})">
|
||||
<summary>
|
||||
Drops specified rows and/or columns from the array.
|
||||
</summary>
|
||||
<param name="range">Input range or array.</param>
|
||||
<param name="rows">Number of rows to drop.</param>
|
||||
<param name="columns">Number of columns to drop.</param>
|
||||
<param name="numberOfRows">Total number of rows in the array.</param>
|
||||
<param name="numberOfColumns">Total number of columns in the array.</param>
|
||||
<param name="arrayValues">List of array values.</param>
|
||||
<returns>Resultant string after dropping specified rows and/or columns.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeExpand(System.String)">
|
||||
<summary>
|
||||
This function expands or pads an array to specified row and column dimensions.
|
||||
</summary>
|
||||
<param name="args">
|
||||
A string containing the arguments separated by commas.
|
||||
The format should be: "array, rows, columns, pad_with".
|
||||
<list type="bullet">
|
||||
<item><description><c>array</c>: The array to expand.</description></item>
|
||||
<item><description><c>rows</c>: The number of rows in the expanded array. If missing, rows will not be expanded.</description></item>
|
||||
<item><description><c>columns</c>: The number of columns in the expanded array. If missing, columns will not be expanded.</description></item>
|
||||
<item><description><c>pad_with</c>: The value with which to pad. The default is #N/A.</description></item>
|
||||
</list>
|
||||
</param>
|
||||
<returns>An expanded or padded array with the specified row and column dimensions.</returns>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ExpandedArray(System.String,System.String,System.String,System.String)">
|
||||
<summary>
|
||||
Compute and return the expanded arraay based on pad_with and rows and cols argument.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Syncfusion.OfficeChart.Calculate.CalcEngine.ComputeWebService(System.String)">
|
||||
<summary>
|
||||
Return the XML content of the given document
|
||||
@@ -22141,6 +22952,11 @@
|
||||
Indicats whether to show text bold properties or not
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Syncfusion.OfficeChart.Implementation.Charts.ChartDataLabelsImpl.m_bShowItalicProperties">
|
||||
<summary>
|
||||
Indicats whether to show text italic properties or not
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Syncfusion.OfficeChart.Implementation.Charts.ChartDataLabelsImpl.m_isSourceLinked">
|
||||
<summary>
|
||||
Indicates if data labels are linked to source
|
||||
@@ -22583,6 +23399,11 @@
|
||||
Gets or sets a value indicating whether to show text bold properties or not
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Syncfusion.OfficeChart.Implementation.Charts.ChartDataLabelsImpl.ShowItalicProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to show text italic properties or not
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Syncfusion.OfficeChart.Implementation.Charts.ChartDataLabelsImpl.TextRotation">
|
||||
<summary>
|
||||
Gets or sets the Text Rotation
|
||||
@@ -37647,6 +38468,11 @@
|
||||
Specifies the contents
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Syncfusion.OfficeChart.Implementation.Charts.ChartImpl.m_isStringRef">
|
||||
<summary>
|
||||
Represents whether datetime axis contains string reference
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Syncfusion.OfficeChart.Implementation.Charts.ChartImpl.m_bShowGapWidth">
|
||||
<summary>
|
||||
Represents whether to serialize gapwidth
|
||||
@@ -39534,6 +40360,11 @@
|
||||
Chart relational items collection
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Syncfusion.OfficeChart.Implementation.Charts.ChartImpl.IsStringRef">
|
||||
<summary>
|
||||
Indicates the DateTime axis contains a string reference or not.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Syncfusion.OfficeChart.Implementation.Charts.ChartImpl.OverLap">
|
||||
<summary>
|
||||
Specifies the contents of this attribute contain an integer between -100 and 100.
|
||||
@@ -45358,11 +46189,7 @@
|
||||
Object that holds the information required for Histogram series
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Syncfusion.OfficeChart.Implementation.Charts.ChartSerieDataFormatImpl.m_isMarkerDefaultSymbol">
|
||||
<summary>
|
||||
Indicates the marker has default symbol.
|
||||
</summary>
|
||||
</member>
|
||||
<!-- Badly formed XML comment ignored for member "F:Syncfusion.OfficeChart.Implementation.Charts.ChartSerieDataFormatImpl.m_isMarkerDefaultSymbol" -->
|
||||
<member name="M:Syncfusion.OfficeChart.Implementation.Charts.ChartSerieDataFormatImpl.#ctor(Syncfusion.OfficeChart.IApplication,System.Object)">
|
||||
<summary>
|
||||
Creates series and set its Application and Parent
|
||||
@@ -50990,6 +51817,11 @@
|
||||
Indicats whether to show text bold properties or not
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Syncfusion.OfficeChart.Implementation.Charts.ChartTextAreaImpl.m_bShowItalicProperties">
|
||||
<summary>
|
||||
Indicats whether to show text italic properties or not
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Syncfusion.OfficeChart.Implementation.Charts.ChartTextAreaImpl.m_rtfString">
|
||||
<summary>
|
||||
Represents RTF string.
|
||||
@@ -51437,6 +52269,11 @@
|
||||
Gets or sets a value indicating whether to show text bold properties or not
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Syncfusion.OfficeChart.Implementation.Charts.ChartTextAreaImpl.ShowItalicProperties">
|
||||
<summary>
|
||||
Gets or sets a value indicating whether to show text italic properties or not
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:Syncfusion.OfficeChart.Implementation.Charts.ChartTextAreaImpl.StringCache">
|
||||
<summary>
|
||||
Gets / Sets the string array
|
||||
@@ -134659,6 +135496,11 @@
|
||||
Right alignment
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Syncfusion.OfficeChart.AxisLabelAlignment.Justify">
|
||||
<summary>
|
||||
Justify alignment
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Syncfusion.OfficeChart.Office2007ChartPresetsOuter">
|
||||
<summary>
|
||||
Specifies values Indicates the Outer Shadow values
|
||||
|
||||
Reference in New Issue
Block a user