Uses of Class
org.das2.graph.TickVDescriptor

Packages that use TickVDescriptor
org.das2.graph Mostly contains DasCanvasComponents, which are components that live within the DasCanvas, and Renderers which draw on DasPlots. 
 

Uses of TickVDescriptor in org.das2.graph
 

Fields in org.das2.graph declared as TickVDescriptor
protected  TickVDescriptor DasAxis.tickV
           
 

Methods in org.das2.graph that return TickVDescriptor
static TickVDescriptor TickVDescriptor.bestTickVLinear(Datum min, Datum max, int nTicksMin, int nTicksMax, boolean fin)
          return a set of linear ticks, within the given constraints.
static TickVDescriptor TickVDescriptor.bestTickVLogNew(Datum minD, Datum maxD, int nTicksMin, int nTicksMax, boolean fin)
          return a set of log ticks, within the given constraints.
static TickVDescriptor TickVDescriptor.bestTickVTime(Datum minD, Datum maxD, int nTicksMin, int nTicksMax, boolean fin)
           
static TickVDescriptor TickVDescriptor.bestTickVTimeOrdinal(Datum minD, Datum maxD, int nTicksMin, int nTicksMax, boolean fin)
          return a set of ticks counting off ordinal time ranges, such as months, years, days, etc.
 TickVDescriptor DasAxis.getTickV()
          TODO
 TickVDescriptor DasLabelAxis.getTickV()
           
static TickVDescriptor TickVDescriptor.newTickVDescriptor(DatumVector majorTicks, DatumVector minorTicks)
           
static TickVDescriptor TickVDescriptor.newTickVDescriptor(java.util.List majorTicks, java.util.List minorTicks)
          creates descriptor with two Lists containing Datums.
 

Methods in org.das2.graph with parameters of type TickVDescriptor
 void GrannyTickLabeller.init(TickVDescriptor ticks)
          sets the ticks and DatumFormatter before drawing.
 void TickLabeller.init(TickVDescriptor ticks)
           
 void DasAxis.setTickV(TickVDescriptor tickV)
          Sets the TickVDescriptor for this axis.
 void TickCurveRenderer.setTickVDescriptor(TickVDescriptor ticks)
          set the ticks for the renderer.
 

Constructors in org.das2.graph with parameters of type TickVDescriptor
TickCurveRenderer(DataSet ds, java.lang.String xplane, java.lang.String yplane, TickVDescriptor tickv)
          The dataset be a Vector data set with planes identified by xplane and yplane.