public class YAxis extends Axis<YAxis>
BaseChart.getYAxis() method to gain a reference to this
object. Example usage:
chart.getYAxis()
.setType(Axis.Type.LINEAR)
.setAxisTitleText("Sales")
.setLineWidth(3);
Axis.TickPosition, Axis.Type, Axis.WeekDay| Modifier and Type | Method and Description |
|---|---|
YAxis |
setCategories(boolean redraw,
String... categories)
Sets category names to use for the xAxis (instead of using numbers), explicitly controlling whether
or not the axis will be redrawn in the case that the chart has already been rendered to the DOM.
|
YAxis |
setCategories(String... categories)
Sets category names to use for the xAxis (instead of using numbers).
|
YAxis |
setHeight(Number height)
Convenience method for setting the 'top' option of the axis.
|
YAxis |
setLabels(YAxisLabels labels)
Convenience method for setting the 'labels' options of the axis.
|
YAxis |
setStackLabels(StackLabels stackLabels)
Convenience method for setting the 'stackLabels' options of the axis.
|
YAxis |
setTop(Number top)
Convenience method for setting the 'top' option of the axis.
|
addPlotBands, addPlotLines, createPlotBand, createPlotLine, getAxisSetExtremesEventHandler, getExtremes, getNativeAxis, removePlotBand, removePlotLine, setAllowDecimals, setAlternateGridColor, setAxisSetExtremesEventHandler, setAxisTitle, setAxisTitle, setAxisTitleText, setAxisTitleText, setDateTimeLabelFormats, setEndOnTick, setExtremes, setExtremes, setExtremes, setGridLineColor, setGridLineDashStyle, setGridLineWidth, setLineColor, setLineWidth, setLinkedTo, setMax, setMaxPadding, setMaxZoom, setMin, setMinorGridLineColor, setMinorGridLineDashStyle, setMinorGridLineWidth, setMinorTickColor, setMinorTickInterval, setMinorTickIntervalAuto, setMinorTickLength, setMinorTickPosition, setMinorTickWidth, setMinPadding, setOffset, setOpposite, setPlotBands, setPlotLines, setReversed, setShowEmpty, setShowFirstLabel, setShowLastLabel, setStartOfWeek, setStartOnTick, setTickColor, setTickInterval, setTickLength, setTickPixelInterval, setTickPosition, setTickWidth, setType, update, updategetOptions, setOptionpublic YAxis setCategories(String... categories)
setCategories(boolean, String...) method instead.categories - An array of category names to use for the axis.XAxis instance for convenient method chaining.public YAxis setCategories(boolean redraw, String... categories)
redraw - Whether to redraw the axis or wait for an explicit call to BaseChart.redraw()categories - An array of category names to use for the axis.XAxis instance for convenient method chaining.public YAxis setHeight(Number height)
axis.setOption("top", 300);
The maximum value of the axisheight - The height of the axis.YAxis instance for convenient method chaining.public YAxis setTop(Number top)
axis.setOption("top", 300);
The top pixel position of the Y axis relative to the chart. Defaults to null.
Note that this option is a fixed value and does not support setting the top of the
axis as a percentage of the pane.top - The top value of the axis.YAxis instance for convenient method chaining.public YAxis setLabels(YAxisLabels labels)
axis.setOption("/labels/align", Labels.Align.LEFT);
axis.setOption("/labels/enabled", true);
etc...
Configuration object for the axis labels, usually displaying the number for each tick.
Example usage:
axis.setLabels(
new XAxisLabels()
.setAlign(Labels.Align.LEFT)
.setEnabled(true)
);
labels - The configuration object for the axis labels, or null to use the defaults.YAxis instance for convenient method chaining.public YAxis setStackLabels(StackLabels stackLabels)
axis.setOption("/stackLabels/align", Labels.Align.LEFT);
axis.setOption("/stackLabels/enabled", true);
etc...
The stack labels show the total value for each bar in a stacked column or bar chart. The label
will be placed on top of positive columns and below negative columns. In case of an inverted
column chart or a bar chart the label is placed to the right of positive bars and to the left
of negative bars.
Example usage:
axis.setStackLabels(
new StackLabels()
.setAlign(Labels.Align.LEFT)
.setEnabled(true)
);
stackLabels - The configuration object for the axis stack labels, or null to use the defaults.YAxis instance for convenient method chaining.Copyright © 2015. All Rights Reserved.