blob: 2adfb868a7f31db821dd8945f99e0c8723c46fd9 [file] [log] [blame]
package com.github.mikephil.charting.data;
import android.graphics.Color;
import java.util.ArrayList;
/**
* Baseclass of all DataSets for Bar-, Line-, Scatter- and CandleStickChart.
*
* @author Philipp Jahoda
*/
public abstract class BarLineScatterCandleRadarDataSet extends DataSet {
/** default highlight color */
protected int mHighLightColor = Color.rgb(255, 187, 115);
public BarLineScatterCandleRadarDataSet(ArrayList<? extends Entry> yVals, String label) {
super(yVals, label);
}
/**
* Sets the color that is used for drawing the highlight indicators. Dont
* forget to resolve the color using getResources().getColor(...) or
* Color.rgb(...).
*
* @param color
*/
public void setHighLightColor(int color) {
mHighLightColor = color;
}
/**
* Returns the color that is used for drawing the highlight indicators.
*
* @return
*/
public int getHighLightColor() {
return mHighLightColor;
}
}