-
- All Implemented Interfaces:
-
com.github.mikephil.charting.interfaces.datasets.IBarLineScatterCandleBubbleDataSet,com.github.mikephil.charting.interfaces.datasets.IDataSet,com.github.mikephil.charting.interfaces.datasets.ILineScatterCandleRadarDataSet,java.io.Serializable
public abstract class LineScatterCandleRadarDataSet<T extends Entry> extends BarLineScatterCandleBubbleDataSet<T> implements ILineScatterCandleRadarDataSet<T>
Created by Philipp Jahoda on 11/07/15.
-
-
Constructor Summary
Constructors Constructor Description LineScatterCandleRadarDataSet(List<T> yVals, String label)
-
Method Summary
Modifier and Type Method Description voidsetDrawHorizontalHighlightIndicator(boolean enabled)Enables / disables the horizontal highlight-indicator. voidsetDrawVerticalHighlightIndicator(boolean enabled)Enables / disables the vertical highlight-indicator. voidsetDrawHighlightIndicators(boolean enabled)Enables / disables both vertical and horizontal highlight-indicators. booleanisVerticalHighlightIndicatorEnabled()booleanisHorizontalHighlightIndicatorEnabled()voidsetHighlightLineWidth(float width)Sets the width of the highlight line in dp. floatgetHighlightLineWidth()voidenableDashedHighlightLine(float lineLength, float spaceLength, float phase)Enables the highlight-line to be drawn in dashed mode, e.g. voiddisableDashedHighlightLine()Disables the highlight-line to be drawn in dashed mode. booleanisDashedHighlightLineEnabled()Returns true if the dashed-line effect is enabled for highlight lines, false if not. DashPathEffectgetDashPathEffectHighlight()-
Methods inherited from class com.github.mikephil.charting.data.BarLineScatterCandleBubbleDataSet
getHighLightColor, setHighLightColor -
Methods inherited from class com.github.mikephil.charting.data.DataSet
addEntry, addEntryOrdered, calcMinMax, calcMinMaxY, clear, copy, getEntries, getEntriesForXValue, getEntryCount, getEntryForIndex, getEntryForXValue, getEntryForXValue, getEntryIndex, getEntryIndex, getValues, getXMax, getXMin, getYMax, getYMin, removeEntry, setEntries, setValues, toSimpleString, toString -
Methods inherited from class com.github.mikephil.charting.data.BaseDataSet
addColor, contains, getAxisDependency, getColor, getColors, getForm, getFormLineDashEffect, getFormLineWidth, getFormSize, getIconsOffset, getIndexInEntries, getLabel, getValueColors, getValueFormatter, getValueTextColor, getValueTextSize, getValueTypeface, isDrawIconsEnabled, isDrawValuesEnabled, isHighlightEnabled, isVisible, needsFormatter, notifyDataSetChanged, removeEntry, removeEntryByXValue, removeFirst, removeLast, resetColors, setAxisDependency, setColor, setColors, setDrawIcons, setDrawValues, setForm, setFormLineDashEffect, setFormLineWidth, setFormSize, setHighlightEnabled, setIconsOffset, setLabel, setValueFormatter, setValueTextColor, setValueTextColors, setValueTextSize, setValueTypeface, setVisible -
Methods inherited from class com.github.mikephil.charting.interfaces.datasets.IDataSet
contains, getAxisDependency, getColor, getColor, getColors, getEntryForXValue, getEntryIndex, getEntryIndex, getForm, getFormLineDashEffect, getFormLineWidth, getFormSize, getIconsOffset, getIndexInEntries, getLabel, getValueFormatter, getValueTextColor, getValueTextColor, getValueTextSize, getValueTypeface, isDrawIconsEnabled, isDrawValuesEnabled, isHighlightEnabled, isVisible, needsFormatter, removeEntry, removeEntryByXValue, removeFirst, removeLast, setAxisDependency, setDrawIcons, setDrawValues, setHighlightEnabled, setIconsOffset, setLabel, setValueFormatter, setValueTextColor, setValueTextColors, setValueTextSize, setValueTypeface, setVisible -
Methods inherited from class com.github.mikephil.charting.interfaces.datasets.IBarLineScatterCandleBubbleDataSet
getHighLightColor -
Methods inherited from class com.github.mikephil.charting.interfaces.datasets.ILineScatterCandleRadarDataSet
getDashPathEffectHighlight, getHighlightLineWidth, isHorizontalHighlightIndicatorEnabled, isVerticalHighlightIndicatorEnabled -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
setDrawHorizontalHighlightIndicator
void setDrawHorizontalHighlightIndicator(boolean enabled)
Enables / disables the horizontal highlight-indicator. If disabled, the indicator is not drawn.
-
setDrawVerticalHighlightIndicator
void setDrawVerticalHighlightIndicator(boolean enabled)
Enables / disables the vertical highlight-indicator. If disabled, the indicator is not drawn.
-
setDrawHighlightIndicators
void setDrawHighlightIndicators(boolean enabled)
Enables / disables both vertical and horizontal highlight-indicators.
-
isVerticalHighlightIndicatorEnabled
boolean isVerticalHighlightIndicatorEnabled()
-
isHorizontalHighlightIndicatorEnabled
boolean isHorizontalHighlightIndicatorEnabled()
-
setHighlightLineWidth
void setHighlightLineWidth(float width)
Sets the width of the highlight line in dp.
-
getHighlightLineWidth
float getHighlightLineWidth()
-
enableDashedHighlightLine
void enableDashedHighlightLine(float lineLength, float spaceLength, float phase)
Enables the highlight-line to be drawn in dashed mode, e.g. like this "- - - - - -"
- Parameters:
lineLength- the length of the line piecesspaceLength- the length of space inbetween the line-piecesphase- offset, in degrees (normally, use 0)
-
disableDashedHighlightLine
void disableDashedHighlightLine()
Disables the highlight-line to be drawn in dashed mode.
-
isDashedHighlightLineEnabled
boolean isDashedHighlightLineEnabled()
Returns true if the dashed-line effect is enabled for highlight lines, false if not.Default: disabled
-
getDashPathEffectHighlight
DashPathEffect getDashPathEffectHighlight()
-
-
-
-