com.google.gwt.visualization.client.visualizations
Class ImageAreaChart.Options

java.lang.Object
  extended by com.google.gwt.core.client.JavaScriptObject
      extended by com.google.gwt.ajaxloader.client.Properties
          extended by com.google.gwt.visualization.client.AbstractDrawOptions
              extended by com.google.gwt.visualization.client.CommonOptions
                  extended by com.google.gwt.visualization.client.CommonChartOptions
                      extended by com.google.gwt.visualization.client.visualizations.ImageAreaChart.Options
Enclosing class:
ImageAreaChart

public static class ImageAreaChart.Options
extends CommonChartOptions

Options for drawing the chart.


Nested Class Summary
 
Nested classes/interfaces inherited from class com.google.gwt.ajaxloader.client.Properties
Properties.TypeException
 
Constructor Summary
protected ImageAreaChart.Options()
           
 
Method Summary
static ImageAreaChart.Options create()
           
 void setShowCategoryLabels(boolean showCategoryLabels)
          If set to false, removes the labels of the categories (the X axis labels).
 void setShowValueLabels(boolean showValueLabels)
          If set to false, removes the labels of the values (the Y axis labels).
 void setValueLabelsInterval(double valueLabelsInterval)
          The interval at which to show value axis labels.
 
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
 

Constructor Detail

ImageAreaChart.Options

protected ImageAreaChart.Options()
Method Detail

create

public static ImageAreaChart.Options create()

setShowCategoryLabels

public final void setShowCategoryLabels(boolean showCategoryLabels)
If set to false, removes the labels of the categories (the X axis labels).


setShowValueLabels

public final void setShowValueLabels(boolean showValueLabels)
If set to false, removes the labels of the values (the Y axis labels).


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).