com.google.gwt.visualization.client.visualizations
Class ImageLineChart.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.ImageLineChart.Options
Enclosing class:
ImageLineChart

public static class ImageLineChart.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 ImageLineChart.Options()
           
 
Method Summary
static ImageLineChart.Options create()
           
 void setShowAxisLines(boolean showAxisLines)
          If set to false, removes axis lines and labels.
 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

ImageLineChart.Options

protected ImageLineChart.Options()
Method Detail

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