Uses of Interface
adams.gui.visualization.core.axis.TickGenerator
-
Packages that use TickGenerator Package Description adams.gui.tools.spreadsheetviewer.chart adams.gui.visualization.core adams.gui.visualization.core.axis -
-
Uses of TickGenerator in adams.gui.tools.spreadsheetviewer.chart
Fields in adams.gui.tools.spreadsheetviewer.chart declared as TickGenerator Modifier and Type Field Description protected TickGenerator
GenericPlot. m_XTickGenerator
the tick generator for the X axis.protected TickGenerator
GenericPlot. m_YTickGenerator
the tick generator for the Y axis.Methods in adams.gui.tools.spreadsheetviewer.chart that return TickGenerator Modifier and Type Method Description protected TickGenerator
AbstractChartGenerator. columnTypesToTickGenerator(SpreadSheet sheet, int[] colIndices)
Returns the most appropriate tick generator for the given columns.protected TickGenerator
AbstractChartGenerator. columnTypeToTickGenerator(SpreadSheet sheet, int colIndex)
Returns the most appropriate tick generator for a given column.TickGenerator
GenericPlot. getXTickGenerator()
Returns the tick generator for the X axis.TickGenerator
GenericPlot. getYTickGenerator()
Returns the tick generator for the Y axis.Methods in adams.gui.tools.spreadsheetviewer.chart with parameters of type TickGenerator Modifier and Type Method Description void
GenericPlot. setXTickGenerator(TickGenerator value)
Sets the tick generator for the X axis.void
GenericPlot. setYTickGenerator(TickGenerator value)
Sets the tick generator for the X axis. -
Uses of TickGenerator in adams.gui.visualization.core
Fields in adams.gui.visualization.core declared as TickGenerator Modifier and Type Field Description protected TickGenerator
AxisPanelOptions. m_TickGenerator
the tick generator to use.Methods in adams.gui.visualization.core that return TickGenerator Modifier and Type Method Description TickGenerator
AxisPanel. getTickGenerator()
Returns the current tick generator in use.TickGenerator
AxisPanelOptions. getTickGenerator()
Returns the current tick generator in use.Methods in adams.gui.visualization.core with parameters of type TickGenerator Modifier and Type Method Description void
AxisPanel. setTickGenerator(TickGenerator value)
Sets tick generator to use.void
AxisPanelOptions. setTickGenerator(TickGenerator value)
Sets tick generator to use. -
Uses of TickGenerator in adams.gui.visualization.core.axis
Subinterfaces of TickGenerator in adams.gui.visualization.core.axis Modifier and Type Interface Description interface
FixedLabelTickGenerator
Interface for tick generators that use a fixed list of string labels.Classes in adams.gui.visualization.core.axis that implement TickGenerator Modifier and Type Class Description class
AbstractLimitedTickGenerator
Ancestor for tick generators that only generate a limited number of ticks.class
AbstractTickGenerator
An abstract class of a tick generator.class
FancyTickGenerator
A fancy tick generator based on code from the flotcharts project.class
PeriodicityTickGenerator
A periodicity tick generator.class
SimpleFixedLabelTickGenerator
A simple tick generator that uses a fixed list of labels.class
SimpleTickGenerator
A simple tick generator.Fields in adams.gui.visualization.core.axis declared as TickGenerator Modifier and Type Field Description protected TickGenerator
AbstractAxisModel. m_TickGenerator
the tick generator.Methods in adams.gui.visualization.core.axis that return TickGenerator Modifier and Type Method Description static TickGenerator
AbstractTickGenerator. forCommandLine(String cmdline)
Instantiates the generator from the given commandline (i.e., classname and optional options).static TickGenerator
AbstractTickGenerator. forName(String classname, String[] options)
Instantiates the generator with the given options.TickGenerator
AbstractAxisModel. getTickGenerator()
Returns the current tick generator in use.TickGenerator
AbstractTickGenerator. shallowCopy()
Returns a shallow copy of itself, i.e., based on the commandline options.TickGenerator
AbstractTickGenerator. shallowCopy(boolean expand)
Returns a shallow copy of itself, i.e., based on the commandline options.Methods in adams.gui.visualization.core.axis with parameters of type TickGenerator Modifier and Type Method Description void
AbstractAxisModel. setTickGenerator(TickGenerator value)
Sets the tick generator to use.
-