Skip to content
This repository was archived by the owner on Feb 14, 2020. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'origin/PVA' into PVA
Browse files Browse the repository at this point in the history
# Conflicts:
#	highchartsapi-demo/highchartsapi-demo.iml
#	highchartsapi/pom.xml
  • Loading branch information
downdrown committed Apr 14, 2015
2 parents 58b0098 + 6d21f1f commit 162cb44
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ public class Axis {
private boolean showLastLabel = true;
private boolean labelsEnabled = true;
private boolean allowDecimals = true;
private int tickLength = 0;
private int tickLength = 1;
private int gridLineWidth = 1;

public Axis() {

}

public Axis(AxisType axisType) {
this.axisType = axisType;
}
Expand Down Expand Up @@ -146,7 +150,7 @@ public String getHighChartValue() throws HighChartsException {
if (this.title != null) {
builder.append("title : { text: '" + this.title + "' }");
} else {
builder.append("title : { enabled: false}");
builder.append("title : { text: null }");
}

//Axis Value Type
Expand Down

0 comments on commit 162cb44

Please sign in to comment.