| Package | Description |
|---|---|
| org.moxieapps.gwt.highcharts.client | |
| org.moxieapps.gwt.highcharts.client.events | |
| org.moxieapps.gwt.highcharts.client.labels |
| Modifier and Type | Method and Description |
|---|---|
Point |
ToolTipData.getPoint()
Create a new GWT point instance that is connected to the Highcharts JS point instance associated
with this tooltip.
|
Point |
ToolTipData.getPoint(int index)
Create a new GWT point instance that is connected to the Highcharts JS point instance at a
given index (for shared tooltips) associated with this tooltip.
|
Point[] |
Series.getPoints()
Retrieve the array of points that have been added to this series.
|
Point[] |
ToolTipData.getPoints()
Create a new GWT point instance for each values in the array of values provided that are
connected to the Highcharts JS point instances associated with this tooltip (shared tooltips only).
|
Point[] |
BaseChart.getSelectedPoints()
Returns an array of all currently selected points in the chart.
|
Point |
Point.remove()
Remove the point from the series, automatically redrawing the chart using the default
animation options.
|
Point |
Point.remove(boolean redraw,
Animation animation)
Remove the point from the series, explicitly controlling whether the chart is redrawn
and the details of the animation options.
|
Point |
Point.remove(boolean redraw,
boolean animation)
Remove the point from the series, explicitly controlling whether the chart is redrawn
and/or animated or not.
|
Point |
Point.select(boolean select,
boolean accumulate)
Select or unselect the point.
|
Point |
Point.selectToggle(boolean accumulate)
Toggle the selection state of the point.
|
Point |
Point.setColor(String color)
Convenience method for setting the 'color' option of the point.
|
Point |
Point.setDrilldownSeries(Series drilldownSeries)
Convenience method for setting the 'drilldown' option of the point.
|
Point |
Point.setIsIntermediateSum(boolean isIntermediateSum)
Convenience method for setting the 'isIntermediateSum' option for a point.
|
Point |
Point.setIsSum(boolean isSum)
Convenience method for setting the 'isSum' option for the point.
|
Point |
Point.setMarker(Marker marker)
Override the individual point marker for the point.
|
Point |
Point.setName(String name)
Convenience method for setting the 'name' option of the point.
|
Point |
Point.setParent(Point parent)
Convenience method for setting the 'parent' option of the point.
|
Point |
Point.setParent(String parent)
convenience method for setting the 'parent' option of the point, which is useful for
tree map chart types.
|
Point |
Point.setSelected(boolean selected)
Convenience method for setting the 'selected' option of the point.
|
Point |
Point.setSliced(boolean sliced)
Convenience method for setting the 'sliced' option of the point.
|
Point |
Point.setText(String text)
Convenience method for setting the 'text' option of the point.
|
Point |
Point.setTitle(String title)
Convenience method for setting the 'title' option of the point.
|
Point |
Point.setUserData(com.google.gwt.json.client.JSONObject userData)
Store some arbitrary data on the point.
|
Point |
Point.slice(boolean sliced)
Slice out or set back in a pie chart slice, automatically redrawing the chart with the default
animation options.
|
Point |
Point.slice(boolean sliced,
boolean redraw,
Animation animation)
Slice out or set back in a pie chart slice, controlling whether or not the chart will be
automatically redraw or not.
|
Point |
Point.slice(boolean sliced,
boolean redraw,
boolean animation)
Slice out or set back in a pie chart slice, controlling whether or not the chart will be
automatically redraw or not.
|
Point |
Point.sliceToggle()
Toggle slicing out or set back in a pie chart slice, automatically redrawing the chart with the default
animation options.
|
Point |
Point.sliceToggle(boolean redraw,
Animation animation)
Toggle slicing out or set back in a pie chart slice, controlling whether or not the chart will be
automatically redraw or not.
|
Point |
Point.sliceToggle(boolean redraw,
boolean animation)
Toggle slicing out or set back in a pie chart slice, controlling whether or not the chart will be
automatically redraw or not.
|
Point |
Point.update(Number y)
Update the point with the new values, automatically redrawing
the chart with the default animation options.
|
Point |
Point.update(Number y,
boolean redraw)
Update the point with the new values, specifying whether or not the chart should be automatically
redrawn with the new values.
|
Point |
Point.update(Number x,
Number y)
Update the point with the new values, automatically redrawing
the chart with the default animation options.
|
Point |
Point.update(Number x,
Number y,
boolean redraw)
Update the point with the new values, specifying whether or not the chart should be automatically
redrawn with the new values.
|
Point |
Point.update(Number x,
Number low,
Number high)
Update the point with the new values, automatically redrawing
the chart with the default animation options.
|
Point |
Point.update(Number x,
Number low,
Number high,
boolean redraw)
Update the point with the new values, specifying whether or not the chart should be automatically
redrawn with the new values.
|
Point |
Point.update(Point pointOptions)
Update the point with the new values and options from the given point, automatically redrawing
the chart with the default animation options.
|
Point |
Point.update(Point pointOptions,
boolean redraw,
Animation animation)
Update the point with the new values and options from the given point, specifying if the chart
should be automatically redrawn and animated or not.
|
Point |
Point.update(Point pointOptions,
boolean redraw,
boolean animation)
Update the point with the new values and options from the given point, specifying if the chart
should be automatically redrawn and animated or not.
|
| Modifier and Type | Method and Description |
|---|---|
Series |
Series.addPoint(Point point)
Add a point to the series accepting the default options on how the point will be drawn.
|
Series |
Series.addPoint(Point point,
boolean redraw,
boolean shift,
Animation animation)
Add a point to the series with a specific value on the X and Y axis, controlling the
options on how the change will be drawn to the series.
|
Series |
Series.addPoint(Point point,
boolean redraw,
boolean shift,
boolean animation)
Add a point to the series with a specific value on the X and Y axis, controlling the
options on how the change will be drawn to the series.
|
Series |
Series.removePoint(Point point)
Remove the point from the series, automatically redrawing the chart using the default
animation options.
|
Series |
Series.removePoint(Point point,
boolean redraw,
Animation animation)
Remove the point from the series, explicitly controlling whether the chart is redrawn
and the details of the animation options.
|
Series |
Series.removePoint(Point point,
boolean redraw,
boolean animation)
Remove the point from the series, explicitly controlling whether the chart is redrawn
and/or animated or not.
|
Point |
Point.setParent(Point parent)
Convenience method for setting the 'parent' option of the point.
|
Series |
Series.setPoints(Point[] points)
Apply a new set of data to the series and automatically redraw it.
|
Series |
Series.setPoints(Point[] points,
boolean redraw)
Apply a new set of data to the series and optionally redraw it.
|
Point |
Point.update(Point pointOptions)
Update the point with the new values and options from the given point, automatically redrawing
the chart with the default animation options.
|
Point |
Point.update(Point pointOptions,
boolean redraw,
Animation animation)
Update the point with the new values and options from the given point, specifying if the chart
should be automatically redrawn and animated or not.
|
Point |
Point.update(Point pointOptions,
boolean redraw,
boolean animation)
Update the point with the new values and options from the given point, specifying if the chart
should be automatically redrawn and animated or not.
|
| Modifier and Type | Method and Description |
|---|---|
Point |
SeriesClickEvent.getNearestPoint()
Create a new GWT point instance that is connected to the Highcharts JS point instance associated
with the nearest point to the click (e.g.
|
Point |
PointEvent.getPoint()
Create a new GWT point instance that is connected to the Highcharts JS point instance associated
with this event.
|
| Modifier and Type | Method and Description |
|---|---|
Point |
LegendLabelsData.getPoint()
For pie charts, return a GWT point instance that is connected to the Highcharts JS
point instance associated with the legend label.
|
Point |
DataLabelsData.getPoint()
Create a new GWT point instance that is connected to the Highcharts JS point instance associated
with this data label.
|
Copyright © 2015. All Rights Reserved.