-
- All Implemented Interfaces:
-
com.github.mikephil.charting.interfaces.datasets.IBarLineScatterCandleBubbleDataSet,com.github.mikephil.charting.interfaces.datasets.IDataSet,com.github.mikephil.charting.interfaces.datasets.ILineScatterCandleRadarDataSet
public interface ICandleDataSet implements ILineScatterCandleRadarDataSet<CandleEntry>
Created by philipp on 21/10/15.
-
-
Method Summary
Modifier and Type Method Description abstract floatgetBarSpace()Returns the space that is left out on the left and right side of eachcandle. abstract booleangetShowCandleBar()Returns whether the candle bars should show? abstract floatgetShadowWidth()Returns the width of the candle-shadow-line in pixels. abstract intgetShadowColor()Returns shadow color for all entries abstract intgetNeutralColor()Returns the neutral color (for open == close) abstract intgetIncreasingColor()Returns the increasing color (for open < close). abstract intgetDecreasingColor()Returns the decreasing color (for open > close). abstract Paint.StylegetIncreasingPaintStyle()Returns paint style when open < close abstract Paint.StylegetDecreasingPaintStyle()Returns paint style when open > close abstract booleangetShadowColorSameAsCandle()Is the shadow color same as the candle color? -
Methods inherited from class com.github.mikephil.charting.interfaces.datasets.ILineScatterCandleRadarDataSet
getDashPathEffectHighlight, getHighlightLineWidth, isHorizontalHighlightIndicatorEnabled, isVerticalHighlightIndicatorEnabled -
Methods inherited from class com.github.mikephil.charting.interfaces.datasets.IBarLineScatterCandleBubbleDataSet
getHighLightColor -
Methods inherited from class com.github.mikephil.charting.interfaces.datasets.IDataSet
addEntry, addEntryOrdered, calcMinMax, calcMinMaxY, clear, contains, getAxisDependency, getColor, getColor, getColors, getEntriesForXValue, getEntryCount, getEntryForIndex, getEntryForXValue, getEntryForXValue, getEntryIndex, getEntryIndex, getForm, getFormLineDashEffect, getFormLineWidth, getFormSize, getIconsOffset, getIndexInEntries, getLabel, getValueFormatter, getValueTextColor, getValueTextColor, getValueTextSize, getValueTypeface, getXMax, getXMin, getYMax, getYMin, isDrawIconsEnabled, isDrawValuesEnabled, isHighlightEnabled, isVisible, needsFormatter, removeEntry, removeEntry, removeEntryByXValue, removeFirst, removeLast, setAxisDependency, setDrawIcons, setDrawValues, setHighlightEnabled, setIconsOffset, setLabel, setValueFormatter, setValueTextColor, setValueTextColors, setValueTextSize, setValueTypeface, setVisible -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getBarSpace
abstract float getBarSpace()
Returns the space that is left out on the left and right side of eachcandle.
-
getShowCandleBar
abstract boolean getShowCandleBar()
Returns whether the candle bars should show?When false, only "ticks" will show- default: true
-
getShadowWidth
abstract float getShadowWidth()
Returns the width of the candle-shadow-line in pixels.
-
getShadowColor
abstract int getShadowColor()
Returns shadow color for all entries
-
getNeutralColor
abstract int getNeutralColor()
Returns the neutral color (for open == close)
-
getIncreasingColor
abstract int getIncreasingColor()
Returns the increasing color (for open < close).
-
getDecreasingColor
abstract int getDecreasingColor()
Returns the decreasing color (for open > close).
-
getIncreasingPaintStyle
abstract Paint.Style getIncreasingPaintStyle()
Returns paint style when open < close
-
getDecreasingPaintStyle
abstract Paint.Style getDecreasingPaintStyle()
Returns paint style when open > close
-
getShadowColorSameAsCandle
abstract boolean getShadowColorSameAsCandle()
Is the shadow color same as the candle color?
-
-
-
-