Class AxisTick<ST extends AxesChartStyler,S extends AxesChartSeries>
- java.lang.Object
-
- org.knowm.xchart.internal.chartpart.AxisTick<ST,S>
-
- All Implemented Interfaces:
ChartPart
public class AxisTick<ST extends AxesChartStyler,S extends AxesChartSeries> extends java.lang.Object implements ChartPart
An axis tick
-
-
Field Summary
Fields Modifier and Type Field Description private AxisTickLabels<ST,S>axisTickLabelsthe axisticklabelsprivate AxisTickMarks<ST,S>axisTickMarksthe axistickmarksprivate java.awt.geom.Rectangle2Dboundsprivate Chart<ST,S>chartprivate Axis.Directiondirection-
Fields inherited from interface org.knowm.xchart.internal.chartpart.ChartPart
SOLID_STROKE
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) AxisTickLabels<ST,S>getAxisTickLabels()java.awt.geom.Rectangle2DgetBounds()voidpaint(java.awt.Graphics2D g)
-
-
-
Field Detail
-
chart
private final Chart<ST extends AxesChartStyler,S extends AxesChartSeries> chart
-
direction
private final Axis.Direction direction
-
axisTickLabels
private final AxisTickLabels<ST extends AxesChartStyler,S extends AxesChartSeries> axisTickLabels
the axisticklabels
-
axisTickMarks
private final AxisTickMarks<ST extends AxesChartStyler,S extends AxesChartSeries> axisTickMarks
the axistickmarks
-
bounds
private java.awt.geom.Rectangle2D bounds
-
-
Constructor Detail
-
AxisTick
AxisTick(Chart<ST,S> chart, Axis.Direction direction, Axis yAxis)
Constructor- Parameters:
chart-direction-yAxis-
-
-