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

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

    Methods in eu.webtoolkit.jwt.chart that return WAxis
    Modifier and Type Method Description
    WAxis WCartesian3DChart.axis​(Axis axis)
    Returns the specified axis belonging to the chart.
    WAxis WCartesianChart.getAxis​(Axis axis)
    Returns a chart axis.
    WAxis WCartesianChart.getXAxis​(int i)
    Retrieves the X axis at index i.
    WAxis WCartesianChart.getYAxis​(int i)
    Retrieves the Y axis at index i.
    Methods in eu.webtoolkit.jwt.chart that return types with arguments of type WAxis
    Modifier and Type Method Description
    java.util.List<WAxis> WCartesianChart.getXAxes()
    Returns a vector of all X axes associated with this chart.
    java.util.List<WAxis> WCartesianChart.getYAxes()
    Returns a vector of all Y axes associated with this chart.
    Methods in eu.webtoolkit.jwt.chart with parameters of type WAxis
    Modifier and Type Method Description
    int WCartesianChart.addXAxis​(WAxis waxis)
    Adds a X axis to this chart.
    int WCartesianChart.addYAxis​(WAxis waxis)
    Adds a Y axis to this chart.
    protected WRectF WCartesianChart.chartSegmentArea​(WAxis yAxis, int xSegment, int ySegment)
    Returns the segment area for a combination of X and Y segments.
    protected WRectF WCartesianChart.chartSegmentArea​(WAxis xAxis, WAxis yAxis, int xSegment, int ySegment)
    Returns the segment area for a combination of X and Y segments.
    protected WPointF WCartesianChart.map​(double xValue, double yValue, WAxis xAxis, WAxis yAxis)
    Map (x, y) value pair to chart coordinates coordinates.
    protected WPointF WCartesianChart.map​(double xValue, double yValue, WAxis xAxis, WAxis yAxis, int currentXSegment)
    Map (x, y) value pair to chart coordinates coordinates.
    protected WPointF WCartesianChart.map​(double xValue, double yValue, WAxis xAxis, WAxis yAxis, int currentXSegment, int currentYSegment)
    Map (x, y) value pair to chart coordinates coordinates.
    WPointF WCartesianChart.mapFromDevice​(WPointF point, WAxis xAxis, WAxis yAxis)
    Maps from device coordinates to model coordinates.
    WPointF WCartesianChart.mapFromDeviceWithoutTransform​(WPointF point, WAxis xAxis, WAxis yAxis)
    Maps from device coordinates to model coordinates, ignoring the current zoom range.
    WPointF WCartesianChart.mapToDevice​(java.lang.Object xValue, java.lang.Object yValue, WAxis xAxis, WAxis yAxis)
    Maps model values onto chart coordinates.
    WPointF WCartesianChart.mapToDevice​(java.lang.Object xValue, java.lang.Object yValue, WAxis xAxis, WAxis yAxis, int xSegment)
    Maps model values onto chart coordinates.
    WPointF WCartesianChart.mapToDevice​(java.lang.Object xValue, java.lang.Object yValue, WAxis xAxis, WAxis yAxis, int xSegment, int ySegment)
    Maps model values onto chart coordinates.
    WPointF WCartesianChart.mapToDeviceWithoutTransform​(java.lang.Object xValue, java.lang.Object yValue, WAxis xAxis, WAxis yAxis)
    Maps model values onto chart coordinates, ignoring the current zoom range.
    WPointF WCartesianChart.mapToDeviceWithoutTransform​(java.lang.Object xValue, java.lang.Object yValue, WAxis xAxis, WAxis yAxis, int xSegment)
    Maps model values onto chart coordinates, ignoring the current zoom range.
    WPointF WCartesianChart.mapToDeviceWithoutTransform​(java.lang.Object xValue, java.lang.Object yValue, WAxis xAxis, WAxis yAxis, int xSegment, int ySegment)
    Maps model values onto chart coordinates, ignoring the current zoom range.
    protected void WCartesianChart.renderAxis​(WPainter painter, WAxis axis, AxisProperty propertie, AxisProperty... properties)
    Renders properties of one axis.
    protected void WCartesianChart.renderAxis​(WPainter painter, WAxis axis, java.util.EnumSet<AxisProperty> properties)
    Renders properties of one axis.
    protected void WCartesianChart.renderGrid​(WPainter painter, WAxis ax)
    Renders grid lines along the ticks of the given axis.
    void WCartesian3DChart.setAxis​(WAxis waxis, Axis axis)
    Sets an axis.
    void WCartesianChart.setAxis​(WAxis waxis, Axis axis)
    Sets an axis.
    protected WTransform WCartesianChart.zoomRangeTransform​(WAxis xAxis, WAxis yAxis)
    Returns the current zoom range transform.