1 package com.github.mikephil.charting.interfaces.datasets; 2 3 import com.github.mikephil.charting.data.Entry; 4 5 /** 6 * Created by philipp on 21/10/15. 7 */ 8 public interface IBarLineScatterCandleBubbleDataSet<T extends Entry> extends IDataSet<T> { 9 10 /** 11 * Returns the color that is used for drawing the highlight indicators. 12 * 13 * @return 14 */ getHighLightColor()15 int getHighLightColor(); 16 } 17