Skip to content

Commit

Permalink
chore(*): Update to 3.21.12
Browse files Browse the repository at this point in the history
  • Loading branch information
SteKoe committed Feb 14, 2018
1 parent 0bcf961 commit 475b5e0
Show file tree
Hide file tree
Showing 37 changed files with 2,005 additions and 925 deletions.
12 changes: 11 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.stekoe</groupId>
<artifactId>amcharts</artifactId>
<version>3.0.1-SNAPSHOT</version>
<version>3.21.12</version>
<packaging>jar</packaging>
<name>amcharts</name>
<url>http://maven.apache.org</url>
Expand Down Expand Up @@ -48,5 +48,15 @@
<artifactId>gson-fire</artifactId>
<version>0.8.1</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
<version>2.3.0</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path-assert</artifactId>
<version>2.2.0</version>
</dependency>
</dependencies>
</project>
38 changes: 19 additions & 19 deletions src/main/java/de/stekoe/amcharts/AmAngularGauge.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class AmAngularGauge extends AmChart {

/**
* Uses the whole space of the canvas to draw the gauge.
*/
**/
public AmAngularGauge setAdjustSize(boolean adjustSize) {
this.adjustSize = adjustSize;
return this;
Expand All @@ -39,7 +39,7 @@ public Boolean getAdjustSize() {

/**
* Array of arrows.
*/
**/
public AmAngularGauge setArrows(List<GaugeArrow> arrows) {
this.arrows = arrows;
return this;
Expand All @@ -51,7 +51,7 @@ public List<GaugeArrow> getArrows() {

/**
* Array of axes.
*/
**/
public AmAngularGauge setAxes(List<GaugeAxis> axes) {
this.axes = axes;
return this;
Expand All @@ -63,7 +63,7 @@ public List<GaugeAxis> getAxes() {

/**
* In case you use gauge to create a clock, set this to true.
*/
**/
public AmAngularGauge setClockWiseOnly(boolean clockWiseOnly) {
this.clockWiseOnly = clockWiseOnly;
return this;
Expand All @@ -75,7 +75,7 @@ public Boolean getClockWiseOnly() {

/**
* Gauge face opacity.
*/
**/
public AmAngularGauge setFaceAlpha(double faceAlpha) {
this.faceAlpha = faceAlpha;
return this;
Expand All @@ -87,7 +87,7 @@ public Double getFaceAlpha() {

/**
* Gauge face border opacity.
*/
**/
public AmAngularGauge setFaceBorderAlpha(double faceBorderAlpha) {
this.faceBorderAlpha = faceBorderAlpha;
return this;
Expand All @@ -99,7 +99,7 @@ public Double getFaceBorderAlpha() {

/**
* Gauge face border color.
*/
**/
public AmAngularGauge setFaceBorderColor(Color faceBorderColor) {
this.faceBorderColor = faceBorderColor;
return this;
Expand All @@ -111,7 +111,7 @@ public Color getFaceBorderColor() {

/**
* Gauge face border width.
*/
**/
public AmAngularGauge setFaceBorderWidth(double faceBorderWidth) {
this.faceBorderWidth = faceBorderWidth;
return this;
Expand All @@ -123,7 +123,7 @@ public Double getFaceBorderWidth() {

/**
* Gauge face color, requires faceAlpha > 0
*/
**/
public AmAngularGauge setFaceColor(Color faceColor) {
this.faceColor = faceColor;
return this;
Expand All @@ -136,7 +136,7 @@ public Color getFaceColor() {
/**
* Gauge face image-pattern. Example: {"url":"../amcharts/patterns/black/pattern1.png",
* "width":4, "height":4}
*/
**/
public AmAngularGauge setFacePattern(Object facePattern) {
this.facePattern = facePattern;
return this;
Expand All @@ -148,7 +148,7 @@ public Object getFacePattern() {

/**
* Gauge's horizontal position in pixel, origin is the center. Centered by default.
*/
**/
public AmAngularGauge setGaugeX(double gaugeX) {
this.gaugeX = gaugeX;
return this;
Expand All @@ -160,7 +160,7 @@ public Double getGaugeX() {

/**
* Gauge's vertical position in pixel, origin is the center. Centered by default.
*/
**/
public AmAngularGauge setGaugeY(double gaugeY) {
this.gaugeY = gaugeY;
return this;
Expand All @@ -172,7 +172,7 @@ public Double getGaugeY() {

/**
* Bottom spacing between chart and container.
*/
**/
public AmAngularGauge setMarginBottom(double marginBottom) {
this.marginBottom = marginBottom;
return this;
Expand All @@ -184,7 +184,7 @@ public Double getMarginBottom() {

/**
* Left-hand spacing between chart and container.
*/
**/
public AmAngularGauge setMarginLeft(double marginLeft) {
this.marginLeft = marginLeft;
return this;
Expand All @@ -196,7 +196,7 @@ public Double getMarginLeft() {

/**
* Right-hand spacing between chart and container.
*/
**/
public AmAngularGauge setMarginRight(double marginRight) {
this.marginRight = marginRight;
return this;
Expand All @@ -208,7 +208,7 @@ public Double getMarginRight() {

/**
* Top spacing between chart and container.
*/
**/
public AmAngularGauge setMarginTop(double marginTop) {
this.marginTop = marginTop;
return this;
Expand All @@ -220,7 +220,7 @@ public Double getMarginTop() {

/**
* Minimum radius of a gauge.
*/
**/
public AmAngularGauge setMinRadius(double minRadius) {
this.minRadius = minRadius;
return this;
Expand All @@ -232,7 +232,7 @@ public Double getMinRadius() {

/**
* Duration of arrow animation.
*/
**/
public AmAngularGauge setStartDuration(double startDuration) {
this.startDuration = startDuration;
return this;
Expand All @@ -245,7 +245,7 @@ public Double getStartDuration() {
/**
* Transition effect of the arrows, possible effects: easeOutSine, easeInSine, elastic,
* bounce.
*/
**/
public AmAngularGauge setStartEffect(String startEffect) {
this.startEffect = startEffect;
return this;
Expand Down
Loading

0 comments on commit 475b5e0

Please sign in to comment.