|
EchoPoint API - 3.0.0b5 App Webcontainer |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectnextapp.echo.app.Component
echopoint.internal.AbstractContainer
echopoint.google.chart.internal.AbstractChart<N>
echopoint.google.chart.internal.SimpleChart<N>
echopoint.google.chart.internal.AdvancedChart<N>
echopoint.google.chart.LineChart<N>
public class LineChart<N extends Number>
Component wrapper for a Line chart provided by Google Chart API.
The following code shows sample use of this component:
import echopoint.google.chart.LineChart;
import echopoint.google.chart.model.ChartData;
...
final ChartData<Integer> data = new ChartData<Integer>();
final Integer[] array = new Integer[] { 30,60,70,90,95,110 };
final List<Integer> xdata = Arrays.asList( array );
final int xmax = 120;
data.setXdata( xdata );
data.setXmax( xmax );
final LineChart<Integer> chart = new LineChart<Integer>();
final ArrayList<ChartData<Integer>> collection = new ArrayList<ChartData<Integer>>();
collection.add( data );
chart.setData( collection );
| Field Summary |
|---|
| Fields inherited from class echopoint.google.chart.internal.AdvancedChart |
|---|
PROPERTY_AXIS_LABELS, PROPERTY_AXIS_RANGES, PROPERTY_AXIS_STYLES, PROPERTY_AXIS_TYPE, PROPERTY_FILL_AREA, PROPERTY_GRID_LINES, PROPERTY_LABEL_POSITIONS, PROPERTY_LINE_STYLES, PROPERTY_RANGE_MARKERS |
| Fields inherited from class echopoint.google.chart.internal.SimpleChart |
|---|
PROPERTY_LEGEND_POSITION |
| Fields inherited from class echopoint.google.chart.internal.AbstractChart |
|---|
PROPERTY_ALT, PROPERTY_DATA, PROPERTY_FILL, PROPERTY_TITLE |
| Fields inherited from class echopoint.internal.AbstractContainer |
|---|
ACTION_COMMAND_PROPERTY, ACTION_LISTENERS_CHANGED_PROPERTY, INPUT_ACTION, PROPERTY_ALIGNMENT, PROPERTY_BACKGROUND_IMAGE, PROPERTY_BORDER, PROPERTY_HEIGHT, PROPERTY_INSETS, PROPERTY_WIDTH |
| Constructor Summary | |
|---|---|
LineChart()
|
|
| Method Summary |
|---|
| Methods inherited from class echopoint.google.chart.internal.AdvancedChart |
|---|
getAxisLabels, getAxisRanges, getAxisStyles, getAxisType, getFillArea, getGridLines, getLabelPositions, getLineStyles, getRangeMarkers, setAxisLabels, setAxisRanges, setAxisStyles, setAxisType, setFillArea, setGridLines, setLabelPositions, setLineStyles, setRangeMarkers |
| Methods inherited from class echopoint.google.chart.internal.SimpleChart |
|---|
getLegendPosition, setLegendPosition |
| Methods inherited from class echopoint.google.chart.internal.AbstractChart |
|---|
getAlt, getData, getFill, getTitle, isValidChild, setAlt, setData, setData, setFill, setTitle |
| Methods inherited from class echopoint.internal.AbstractContainer |
|---|
addActionListener, fireActionPerformed, getAlignment, getBackgroundImage, getBorder, getHeight, getInsets, getWidth, hasActionListeners, removeActionListener, setAlignment, setBackgroundImage, setBorder, setHeight, setInsets, setWidth |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public LineChart()
|
EchoPoint API - 3.0.0b5 App Webcontainer |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||