Skip to content

Commit

Permalink
Missing one xAxis entry
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgindi committed Mar 20, 2015
1 parent 699a9f4 commit 44b75a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
tvX.setText("" + (mSeekBarX.getProgress() + 1));
tvY.setText("" + (mSeekBarY.getProgress()));

setData(mSeekBarX.getProgress(), mSeekBarY.getProgress());
setData(mSeekBarX.getProgress() + 1, mSeekBarY.getProgress());
mChart.invalidate();
}

Expand Down

0 comments on commit 44b75a6

Please sign in to comment.