Skip to content
Snippets Groups Projects
Commit 90aefe9f authored by Bryan Cardillo's avatar Bryan Cardillo
Browse files

add axis label rotation to style manager

parent 60b3fb80
No related branches found
No related tags found
No related merge requests found
......@@ -123,6 +123,8 @@ public class StyleManager {
private double axisTickSpacePercentage;
private TextAlignment xAxisLabelAlignment = TextAlignment.Centre;
private TextAlignment yAxisLabelAlignment = TextAlignment.Left;
private int xAxisLabelRotation = 0;
private int yAxisLabelRotation = 0;
// Chart Plot Area ///////////////////////////////
private boolean isPlotGridLinesVisible;
......@@ -906,6 +908,26 @@ public class StyleManager {
this.yAxisLabelAlignment = yAxisLabelAlignment;
}
public int getXAxisLabelRotation() {
return xAxisLabelRotation;
}
public void setXAxisLabelRotation(int xAxisLabelRotation) {
this.xAxisLabelRotation = xAxisLabelRotation;
}
public int getYAxisLabelRotation() {
return yAxisLabelRotation;
}
public void setYAxisLabelRotation(int yAxisLabelRotation) {
this.yAxisLabelRotation = yAxisLabelRotation;
}
// Chart Plot Area ///////////////////////////////
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment