Package 

Interface ILineDataSet

  • 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.Mode getMode() Returns the drawing mode for this line dataset
      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.
      abstract boolean isDrawCubicEnabled()
      abstract boolean isDrawSteppedEnabled()
      abstract float getCircleRadius() Returns the size of the drawn circles.
      abstract float getCircleHoleRadius() Returns the hole radius of the drawn circles.
      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.
      abstract int getCircleColorCount() Returns the number of colors in this DataSet's circle-color array.
      abstract boolean isDrawCirclesEnabled() Returns true if drawing circles for this DataSet is enabled, false if not
      abstract int getCircleHoleColor() Returns the color of the inner circle (the circle-hole).
      abstract boolean isDrawCircleHoleEnabled() Returns true if drawing the circle-holes is enabled, false if not.
      abstract DashPathEffect getDashPathEffect() Returns the DashPathEffect that is used for drawing the lines.
      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.
      abstract IFillFormatter getFillFormatter() 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

      • 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

      • 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.

      • 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.