Skip to content

Commit

Permalink
Fixed example code error in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
EyalBira committed Oct 5, 2015
1 parent 70f28df commit 54c56c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -119,7 +119,7 @@ Every chart view can be defined in layout xml file:
values.add(new PointValue(3, 4));

//In most cased you can call data model methods in builder-pattern-like manner.
Line line = new Line(values).setColor(Color.Blue).setCubic(true);
Line line = new Line(values).setColor(Color.BLUE).setCubic(true);
List<Line> lines = new ArrayList<Line>();
lines.add(line);

Expand Down

0 comments on commit 54c56c6

Please sign in to comment.