Skip to content

Commit

Permalink
Remove unnecessary code from linechart.
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilJay committed May 24, 2015
1 parent 1330fc4 commit 78ca707
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions MPChartLib/src/com/github/mikephil/charting/charts/LineChart.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@
*/
public class LineChart extends BarLineChartBase<LineData> implements LineDataProvider {

/** the width of the highlighning line */
protected float mHighlightWidth = 3f;

private FillFormatter mFillFormatter;

public LineChart(Context context) {
Expand Down Expand Up @@ -55,24 +52,6 @@ protected void calcMinMax() {
if (mDeltaX == 0 && mData.getYValCount() > 0)
mDeltaX = 1;
}

/**
* set the width of the highlightning lines, default 3f
*
* @param width
*/
public void setHighlightLineWidth(float width) {
mHighlightWidth = width;
}

/**
* returns the width of the highlightning line, default 3f
*
* @return
*/
public float getHighlightLineWidth() {
return mHighlightWidth;
}

@Override
public void setFillFormatter(FillFormatter formatter) {
Expand Down

0 comments on commit 78ca707

Please sign in to comment.