-
- All Implemented Interfaces:
-
com.github.mikephil.charting.interfaces.datasets.IBarLineScatterCandleBubbleDataSet,com.github.mikephil.charting.interfaces.datasets.IDataSet,com.github.mikephil.charting.interfaces.datasets.ILineRadarDataSet,com.github.mikephil.charting.interfaces.datasets.ILineScatterCandleRadarDataSet
public interface ILineDataSet implements ILineRadarDataSet<Entry>
Created by Philpp Jahoda on 21/10/15.
-
-
Method Summary
Modifier and Type Method Description abstract LineDataSet.ModegetMode()Returns the drawing mode for this line dataset abstract floatgetCubicIntensity()Returns the intensity of the cubic lines (the effect intensity).Max = 1f = very cubic, Min = 0.05f = low cubic effect, Default: 0. abstract booleanisDrawCubicEnabled()abstract booleanisDrawSteppedEnabled()abstract floatgetCircleRadius()Returns the size of the drawn circles. abstract floatgetCircleHoleRadius()Returns the hole radius of the drawn circles. abstract intgetCircleColor(int index)Returns the color at the given index of the DataSet's circle-color array.Performs a IndexOutOfBounds check by modulus. abstract intgetCircleColorCount()Returns the number of colors in this DataSet's circle-color array. abstract booleanisDrawCirclesEnabled()Returns true if drawing circles for this DataSet is enabled, false if not abstract intgetCircleHoleColor()Returns the color of the inner circle (the circle-hole). abstract booleanisDrawCircleHoleEnabled()Returns true if drawing the circle-holes is enabled, false if not. abstract DashPathEffectgetDashPathEffect()Returns the DashPathEffect that is used for drawing the lines. abstract booleanisDashedLineEnabled()Returns true if the dashed-line effect is enabled, false if not.If the DashPathEffect object is null, also return false here. abstract IFillFormattergetFillFormatter()Returns the IFillFormatter that is set for this DataSet. -
Methods inherited from class com.github.mikephil.charting.interfaces.datasets.ILineRadarDataSet
getFillAlpha, getFillColor, getFillDrawable, getLineWidth, isDrawFilledEnabled, setDrawFilled -
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
-
getMode
abstract LineDataSet.Mode getMode()
Returns the drawing mode for this line dataset
-
getCubicIntensity
abstract float getCubicIntensity()
Returns the intensity of the cubic lines (the effect intensity).Max = 1f = very cubic, Min = 0.05f = low cubic effect, Default: 0.2f
-
isDrawCubicEnabled
@Deprecated() abstract boolean isDrawCubicEnabled()
-
isDrawSteppedEnabled
@Deprecated() abstract boolean isDrawSteppedEnabled()
-
getCircleRadius
abstract float getCircleRadius()
Returns the size of the drawn circles.
-
getCircleHoleRadius
abstract float getCircleHoleRadius()
Returns the hole radius of the drawn circles.
-
getCircleColor
abstract int getCircleColor(int index)
Returns the color at the given index of the DataSet's circle-color array.Performs a IndexOutOfBounds check by modulus.
-
getCircleColorCount
abstract int getCircleColorCount()
Returns the number of colors in this DataSet's circle-color array.
-
isDrawCirclesEnabled
abstract boolean isDrawCirclesEnabled()
Returns true if drawing circles for this DataSet is enabled, false if not
-
getCircleHoleColor
abstract int getCircleHoleColor()
Returns the color of the inner circle (the circle-hole).
-
isDrawCircleHoleEnabled
abstract boolean isDrawCircleHoleEnabled()
Returns true if drawing the circle-holes is enabled, false if not.
-
getDashPathEffect
abstract DashPathEffect getDashPathEffect()
Returns the DashPathEffect that is used for drawing the lines.
-
isDashedLineEnabled
abstract boolean isDashedLineEnabled()
Returns true if the dashed-line effect is enabled, false if not.If the DashPathEffect object is null, also return false here.
-
getFillFormatter
abstract IFillFormatter getFillFormatter()
Returns the IFillFormatter that is set for this DataSet.
-
-
-
-