Optional
xProperty: anyOptional
yProperty: anyOptional
highProperty: anyOptional
lowProperty: anyOptional
openProperty: anyOptional
closeProperty: anythis specifies which axis this DataSet should be plotted against
the space between the candle entries, default 0.1 (10%)
property to access the "close" value of an entry for this set
List representing all colors that are used for this DataSet
color for open > close
palet style when open > close descreasing candlesticks are traditionally filled
Enables / disables the horizontal highlight-indicator. If disabled, the indicator is not drawn.
if true, y-icons are drawn on the chart
if true, y-values are drawn on the chart
Enables / disables the vertical highlight-indicator. If disabled, the indicator is not drawn.
the shader to be used for filling the line surface
The form to draw for this dataset in the legend.
Return `DEFAULT` to use the default legend form.The line dash path effect used for shapes that consist of lines.
Return `null` to use the default legend form line dash effect.The line width for drawing the form of this dataset in the legend
Return `Float.NaN` to use the default legend form line width.The form size to draw for this dataset in the legend.
Return `Float.NaN` to use the default legend form size.Sets the color that is used for drawing the highlight indicators. Dont forget to resolve the color using getResources().getColor(...) or new Color(255, ...).
the path effect for dashed highlight-lines
if true, value highlightning is enabled
the width of the highlight indicator lines
property to access the "high" value of an entry for this set
property to access the "icon" value of an entry for this set
the offset for drawing icons (in dp)
color for open < close
palet style when open < close increasing candlesticks are traditionally hollow
label that describes the DataSet or the data the DataSet represents
property to access the "low" value of an entry for this set
Protected
mthe entries that this DataSet represents / holds together
Protected
mXMaxmaximum x-value in the value array
Protected
mXMinminimum x-value in the value array
Protected
mYMaxmaximum y-value in the value array
Protected
mYMinminimum y-value in the value array
color for open === close
property to access the "open" value of an entry for this set
shadow line color, set -1 for backward compatibility and uses default color
use candle color for the shadow
the width of the shadow of the candle
should the candle bars show? when false, only "ticks" will show
- default: truedata space from the smallest value to the bottom in percent of the total axis range
data space from the highest value to the top in percent of the total axis range
List representing all colors that are used for drawing the actual values for this DataSet
custom formatter that is used instead of the auto-formatter if set
the offset for drawing values (in dp)
the size of the value-text labels
the typeface used for the value text
flag that indicates if the DataSet is visible or not
property to access the "x" value of an entry for this set
property to access the "y" value of an entry for this set
Enables / disables both vertical and horizontal highlight-indicators.
Returns the number of y-values this DataSet represents -> the size of the y-values array -> yvals.length
Sets the color the value-labels of this DataSet should have.
Sets a list of colors to be used as the colors for the drawn values.
returns the maximum x-value this DataSet holds
returns the minimum x-value this DataSet holds
returns the maximum y-value this DataSet holds
returns the minimum y-value this DataSet holds
Adds an Entry to the DataSet dynamically. Entries are added to the end of the list. This will also recalculate the current minimum and maximum values of the DataSet and the value-sum.
Adds an Entry to the DataSet dynamically. Entries are added to their appropriate index in the values array respective to their x-position. This will also recalculate the current minimum and maximum values of the DataSet and the value-sum.
Protected
calcUpdates the min and max x and y value of this DataSet based on the given Entry.
Optional
e: CandleEntryOptional
index: numberProtected
calcOptional
e: CandleEntryOptional
index: numberProtected
calcChecks if this DataSet contains the specified Entry. Returns true if so, false if not. NOTE: Performance is pretty bad on this one, do not over-use in performance critical situations.
Enables the highlight-line to be drawn in dashed mode, e.g. like this "- - - - - -"
the length of the line pieces
the length of space inbetween the line-pieces
offset, in degrees (normally, use 0)
Returns all Entry objects found at the given x-value with binary search. An empty array if no Entry object at that x-value. INFORMATION: This method does calculations at runtime. Do not over-use in performance critical situations.
Returns all Entry objects found at the given x-value with binary search. An empty array if no Entry object at that x-value. INFORMATION: This method does calculations at runtime. Do not over-use in performance critical situations.
Returns the first Entry object found at the given x-value with binary search. If the no Entry at the specified x-value is found, this method returns the Entry at the closest x-value according to the rounding. INFORMATION: This method does calculations at runtime. Do not over-use in performance critical situations.
the x-value
If there are multiple y-values for the specified x-value,
Optional
rounding: Roundingdetermine whether to round up/down/closest if there is no Entry matching the provided x-value
Returns the Entry object found at the given index (NOT xIndex) in the values array.
Returns the first Entry object found at the given x-value with binary search. If the no Entry at the specified x-value is found, this method returns the Entry at the closest x-value according to the rounding. INFORMATION: This method does calculations at runtime. Do not over-use in performance critical situations.
the x-value
If there are multiple y-values for the specified x-value,
Optional
rounding: Roundingdetermine whether to round up/down/closest if there is no Entry matching the provided x-value
Returns the position of the provided entry in the DataSets Entry array. Returns -1 if doesn't exist.
Returns the first Entry index found at the given x-value with binary search. If the no Entry at the specified x-value is found, this method returns the Entry at the closest x-value according to the rounding. INFORMATION: This method does calculations at runtime. Do not over-use in performance critical situations.
the x-value
If there are multiple y-values for the specified x-value,
determine whether to round up/down/closest if there is no Entry matching the provided x-value
Protected
getProtected
initRemoves an Entry from the DataSets entries array. This will also recalculate the current minimum and maximum values of the DataSet and the value-sum. Returns true if an Entry was removed, false if no Entry could be removed.
Protected
update
Created by Philipp Jahoda on 21/10/15.