com.google.gwt.visualization.client.visualizations
Class ImageLineChart.Options
java.lang.Object
com.google.gwt.core.client.JavaScriptObject
com.google.gwt.ajaxloader.client.Properties
com.google.gwt.visualization.client.AbstractDrawOptions
com.google.gwt.visualization.client.CommonOptions
com.google.gwt.visualization.client.CommonChartOptions
com.google.gwt.visualization.client.visualizations.ImageLineChart.Options
- Enclosing class:
- ImageLineChart
public static class ImageLineChart.Options
- extends CommonChartOptions
Options for drawing the chart.
Methods inherited from class com.google.gwt.visualization.client.CommonChartOptions |
setAxisBackgroundColor, setAxisBackgroundColor, setAxisColor, setAxisColor, setAxisFontSize, setLogScale, setMax, setMin, setReverseAxis, setShowCategories, setTitleX, setTitleY |
Methods inherited from class com.google.gwt.visualization.client.CommonOptions |
setBackgroundColor, setBackgroundColor, setBorderColor, setBorderColor, setColors, setColors, setColors, setColors, setEnableTooltip, setFocusBorderColor, setFocusBorderColor, setHeight, setLegend, setLegendBackgroundColor, setLegendBackgroundColor, setLegendFontSize, setLegendTextColor, setLegendTextColor, setSize, setTitle, setTitleColor, setTitleColor, setTitleFontSize, setTooltipHeight, setTooltipWidth, setWidth |
Methods inherited from class com.google.gwt.ajaxloader.client.Properties |
getBoolean, getDate, getNumber, getObject, getString, remove, set, set, set, set, set, typeof |
Methods inherited from class com.google.gwt.core.client.JavaScriptObject |
cast, createArray, createFunction, createObject, equals, hashCode, toSource, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
ImageLineChart.Options
protected ImageLineChart.Options()
create
public static ImageLineChart.Options create()
setShowAxisLines
public final void setShowAxisLines(boolean showAxisLines)
- If set to
false
, removes axis lines and labels. Default
value is true
.
setShowCategoryLabels
public final void setShowCategoryLabels(boolean showCategoryLabels)
- If set to
false
, removes the labels of the categories (the X
axis labels). Default value is true
, or value of
setShowAxisLines(boolean)
if set.
setShowValueLabels
public final void setShowValueLabels(boolean showValueLabels)
- If set to
false
, removes the labels of the values (the y
axis labels). Default value is true
, or value of
setShowAxisLines(boolean)
if set.
setValueLabelsInterval
public final void setValueLabelsInterval(double valueLabelsInterval)
- The interval at which to show value axis labels. For example, if min is
0, max is 100, and valueLabelsInterval is 20, the chart will show axis
labels at (0, 20, 40, 60, 80 100).