Uses of Class
org.das2.graph.DasRow

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

Uses of DasRow in org.das2.graph
 

Fields in org.das2.graph declared as DasRow
static DasRow DasRow.NULL
           
 

Methods in org.das2.graph that return DasRow
 DasRow Leveler.addRow()
           
 DasRow Leveler.addRow(double nposition)
           
 DasRow Leveler.addRow(double nposition, double weight)
           
static DasRow DasRow.create(DasCanvas parent)
           
static DasRow DasRow.create(DasCanvas canvas, DasRow parent, java.lang.String minStr, java.lang.String maxStr)
          makes a new DasRow by parsing a string like "100%-5em+3pt" to get the offsets.
static DasRow DasRow.create(DasCanvas parent, int iplot, int nplot)
           
 DasRow DasRow.createAttachedRow(double ptop, double pbottom)
           
 DasRow DasRow.createSubRow(double ptop, double pbottom)
          Deprecated. This created a row that was not attached to anything, so it was simply a convenience method that didn't save much effort.
 DasRow DasCanvas.Cell.getRow()
          TODO
 DasRow DasCanvasComponent.getRow()
          accessor for the DasRow used for positioning the component.
 DasRow Leveler.whichRow(int y)
           
 

Methods in org.das2.graph with parameters of type DasRow
 void DasCanvas.add(DasCanvasComponent c, DasRow row, DasColumn column)
          This methods adds the specified DasCanvasComponent to this canvas.
static DasRow DasRow.create(DasCanvas canvas, DasRow parent, java.lang.String minStr, java.lang.String maxStr)
          makes a new DasRow by parsing a string like "100%-5em+3pt" to get the offsets.
 DasAxis DasLabelAxis.createAttachedAxis(DasRow row, DasColumn column)
           
 void Leveler.deleteRow(DasRow row)
           
 double Leveler.getPosition(DasRow row)
           
 double Leveler.getWeight(DasRow row)
           
 void RowRowConnector.setLeftRow(DasRow row)
           
 void DasCanvasComponent.setRow(DasRow r)
          set the DasRow for positioning the component vertically.
static java.awt.Rectangle DasDevicePosition.toRectangle(DasRow row, DasColumn column)
           
 

Constructors in org.das2.graph with parameters of type DasRow
ColumnColumnConnector(DasCanvas parent, DasPlot topPlot, DasRow topRow, DasPlot bottomPlot)
           
DasRow(DasCanvas canvas, DasRow parent, double nMin, double nMax, double emMin, double emMax, int ptMin, int ptMax)
           
Leveler(DasCanvas parent, DasRow row)
           
RowRowConnector(DasCanvas parent, DasRow leftRow, DasRow rightRow, DasColumn leftColumn, DasColumn rightColumn)