-
- 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 ILineRadarDataSet<T extends Entry> implements ILineScatterCandleRadarDataSet<T>
Created by Philipp Jahoda on 21/10/15.
-
-
Method Summary
Modifier and Type Method Description abstract intgetFillColor()Returns the color that is used for filling the line surface area. abstract DrawablegetFillDrawable()Returns the drawable used for filling the area below the line. abstract intgetFillAlpha()Returns the alpha value that is used for filling the line surface,default: 85 abstract floatgetLineWidth()Returns the stroke-width of the drawn line abstract booleanisDrawFilledEnabled()Returns true if filled drawing is enabled, false if not abstract voidsetDrawFilled(boolean enabled)Set to true if the DataSet should be drawn filled (surface), and not justas a line, disabling this will give great performance boost. -
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
-
getFillColor
abstract int getFillColor()
Returns the color that is used for filling the line surface area.
-
getFillDrawable
abstract Drawable getFillDrawable()
Returns the drawable used for filling the area below the line.
-
getFillAlpha
abstract int getFillAlpha()
Returns the alpha value that is used for filling the line surface,default: 85
-
getLineWidth
abstract float getLineWidth()
Returns the stroke-width of the drawn line
-
isDrawFilledEnabled
abstract boolean isDrawFilledEnabled()
Returns true if filled drawing is enabled, false if not
-
setDrawFilled
abstract void setDrawFilled(boolean enabled)
Set to true if the DataSet should be drawn filled (surface), and not justas a line, disabling this will give great performance boost. Please note that this methoduses the canvas.clipPath(...) method for drawing the filled area.For devices with API level < 18 (Android 4.3), hardware acceleration of the chart shouldbe turned off. Default: false
-
-
-
-