
com.frontangle.ichart.chart.axis.IntervalStyling Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iceberg-charts Show documentation
Show all versions of iceberg-charts Show documentation
A Java charting library using Java2D
The newest version!
package com.frontangle.ichart.chart.axis;
import java.awt.Font;
import com.frontangle.ichart.chart.draw.GridFill;
import com.frontangle.ichart.chart.draw.Line;
public class IntervalStyling {
public Line graphLine;
public GridFill graphFill;
/**
* length in pixels of the 'Tick'.
* Usually about 5 pixels hanging to the side of axis
*/
public int lineLength;
public Font intervalFont;
public IntervalStyling() {
}
public IntervalStyling(int lineLength, Line gridLine, GridFill gridFill) {
this.lineLength = lineLength;
this.graphLine = gridLine;
this.graphFill = gridFill;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy