Uses of Class
eu.webtoolkit.jwt.chart.Axis

Packages that use Axis
Package Description
eu.webtoolkit.jwt.chart  
  • Uses of Axis in eu.webtoolkit.jwt.chart

    Fields in eu.webtoolkit.jwt.chart declared as Axis
    Modifier and Type Field Description
    Axis WCartesian3DChart.IntersectionPlane.axis  
    static Axis Axis.XAxis_3D  
    static Axis Axis.ZAxis_3D  
    Methods in eu.webtoolkit.jwt.chart that return Axis
    Modifier and Type Method Description
    Axis WDataSeries.getAxis()
    Returns the Y axis used for this series.
    Axis WAxis.getId()
    Returns the axis id.
    static Axis Axis.valueOf​(java.lang.String name)
    Returns the enum constant of this type with the specified name.
    static Axis[] Axis.values()
    Returns an array containing the constants of this enum type, in the order they are declared.
    Methods in eu.webtoolkit.jwt.chart with parameters of type Axis
    Modifier and Type Method Description
    WAxis WCartesian3DChart.axis​(Axis axis)
    Returns the specified axis belonging to the chart.
    abstract WString WAbstractGridData.axisLabel​(int u, Axis axis)  
    WString WEquidistantGridData.axisLabel​(int u, Axis axis)  
    WString WGridData.axisLabel​(int u, Axis axis)  
    void WDataSeries.bindToAxis​(Axis axis)
    Binds this series to a chart axis.
    JSlot WAbstractGridData.changeClippingMax​(Axis axis)
    JSlot to change the value above which the data series will be clipped on the given axis.
    JSlot WAbstractGridData.changeClippingMin​(Axis axis)
    JSlot to change the value below which the data series will be clipped on the given axis.
    WAxis WCartesianChart.getAxis​(Axis axis)
    Returns a chart axis.
    float WAbstractGridData.getClippingMax​(Axis axis)
    Gets the value above which the data series will be clipped on the given axis.
    float WAbstractGridData.getClippingMin​(Axis axis)
    Gets the value below which the data series will be clipped on the given axis.
    boolean WDataSeries.isLabelsEnabled​(Axis axis)
    Returns whether labels are enabled for the given axis.
    protected WPointF WCartesianChart.map​(double xValue, double yValue, Axis yAxis)
    Map (x, y) value pair to chart coordinates coordinates.
    protected WPointF WCartesianChart.map​(double xValue, double yValue, Axis yAxis, int currentXSegment)
    Map (x, y) value pair to chart coordinates coordinates.
    protected WPointF WCartesianChart.map​(double xValue, double yValue, Axis yAxis, int currentXSegment, int currentYSegment)
    Map (x, y) value pair to chart coordinates coordinates.
    WPointF WCartesianChart.mapFromDevice​(WPointF point, Axis ordinateAxis)
    Maps from device coordinates to model coordinates.
    WPointF WCartesianChart.mapFromDeviceWithoutTransform​(WPointF point, Axis ordinateAxis)
    Maps from device coordinates to model coordinates, ignoring the current zoom range.
    WPointF WCartesianChart.mapToDevice​(java.lang.Object xValue, java.lang.Object yValue, Axis axis)
    Maps model values onto chart coordinates.
    WPointF WCartesianChart.mapToDevice​(java.lang.Object xValue, java.lang.Object yValue, Axis axis, int xSegment)
    Maps model values onto chart coordinates.
    WPointF WCartesianChart.mapToDevice​(java.lang.Object xValue, java.lang.Object yValue, Axis axis, int xSegment, int ySegment)
    Maps model values onto chart coordinates.
    WPointF WCartesianChart.mapToDeviceWithoutTransform​(java.lang.Object xValue, java.lang.Object yValue, Axis ordinateAxis)
    Maps model values onto chart coordinates, ignoring the current zoom range.
    WPointF WCartesianChart.mapToDeviceWithoutTransform​(java.lang.Object xValue, java.lang.Object yValue, Axis ordinateAxis, int xSegment)
    Maps model values onto chart coordinates, ignoring the current zoom range.
    WPointF WCartesianChart.mapToDeviceWithoutTransform​(java.lang.Object xValue, java.lang.Object yValue, Axis ordinateAxis, int xSegment, int ySegment)
    Maps model values onto chart coordinates, ignoring the current zoom range.
    abstract double WAbstractDataSeries3D.maximum​(Axis axis)
    Returns the computed maximum value of this dataseries along the given axis.
    abstract double WAbstractGridData.maximum​(Axis axis)  
    double WEquidistantGridData.maximum​(Axis axis)  
    double WGridData.maximum​(Axis axis)  
    double WScatterData.maximum​(Axis axis)  
    abstract double WAbstractDataSeries3D.minimum​(Axis axis)
    Returns the computed minimum value of this dataseries along the given axis.
    abstract double WAbstractGridData.minimum​(Axis axis)  
    double WEquidistantGridData.minimum​(Axis axis)  
    double WGridData.minimum​(Axis axis)  
    double WScatterData.minimum​(Axis axis)  
    void WCartesian3DChart.setAxis​(WAxis waxis, Axis axis)
    Sets an axis.
    void WCartesianChart.setAxis​(WAxis waxis, Axis axis)
    Sets an axis.
    void WAbstractGridData.setClippingMax​(Axis axis, float v)
    Set the value above which the data series will be clipped on the given axis.
    void WAbstractGridData.setClippingMin​(Axis axis, float v)
    Set the value below which the data series will be clipped on the given axis.
    void WCartesian3DChart.setGridEnabled​(Plane plane, Axis axis)
    Enable/disable gridlines.
    void WCartesian3DChart.setGridEnabled​(Plane plane, Axis axis, boolean enabled)
    Enable/disable gridlines.
    void WDataSeries.setLabelsEnabled​(Axis axis)
    Enables a label that is shown at the series data points.
    void WDataSeries.setLabelsEnabled​(Axis axis, boolean enabled)
    Enables a label that is shown at the series data points.
    double WCartesian3DChart.toPlotCubeCoords​(double value, Axis axis)  
    Constructors in eu.webtoolkit.jwt.chart with parameters of type Axis
    Constructor Description
    IntersectionPlane​(Axis axis, double position, WColor col)
    Constructor.
    WDataSeries​(int modelColumn, SeriesType type, Axis axis)
    Constructs a new data series.