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 44b75a6 commit 83dcabf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
tvY.setText("" + (mSeekBarY.getProgress()));

ArrayList<String> xVals = new ArrayList<String>();
for (int i = 0; i < mSeekBarX.getProgress(); i++) {
for (int i = 0; i < mSeekBarX.getProgress() + 1; i++) {
xVals.add((i + 1990) + "");
}

Expand Down

0 comments on commit 83dcabf

Please sign in to comment.