| Package | Description |
|---|---|
| org.moxieapps.gwt.highcharts.client | |
| org.moxieapps.gwt.highcharts.client.plotOptions |
| Modifier and Type | Method and Description |
|---|---|
Series |
Series.setPlotOptions(PlotOptions plotOptions)
Updates the plot options for this series to reflect the given options.
|
| Modifier and Type | Class and Description |
|---|---|
class |
PlotOptions<T extends PlotOptions>
Represents the base class of all PlotOptions types.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AreaPlotOptions
Represents the general plot options available for all area type series, which can be set either generically
on the chart via the
BaseChart.setAreaPlotOptions(AreaPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
AreaRangePlotOptions
Represents the general plot options available for all area range type series, which can be set either
generically on the chart via the
BaseChart.setAreaRangePlotOptions(AreaRangePlotOptions) )} method or
directly on a series via the Series.setPlotOptions(PlotOptions) method. |
class |
AreaSplinePlotOptions
Represents the general plot options available for all area spline type series, which can be set either generically
on the chart via the
BaseChart.setAreaSplinePlotOptions(AreaSplinePlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
AreaSplineRangePlotOptions
Represents the general plot options available for all area spline range type series, which can be set either
generically on the chart via the
BaseChart.setAreaSplineRangePlotOptions(AreaSplineRangePlotOptions) )} method or
directly on a series via the Series.setPlotOptions(PlotOptions) method. |
class |
BarPlotOptions
Represents the general plot options available for all bar type series, which can be set either generically
on the chart via the
BaseChart.setBarPlotOptions(BarPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
BaseAreaPlotOptions<T extends BaseAreaPlotOptions>
A common base class for both
AreaPlotOptions and AreaRangePlotOptions to prevent code duplication
while still maintaining a cleaner way for the user to utilize the method chaining with the generics
in place. |
class |
BaseAreaSplinePlotOptions<T extends BaseAreaSplinePlotOptions>
A common base class for both
AreaSplinePlotOptions and AreaSplineRangePlotOptions to prevent code duplication
while still maintaining a cleaner way for the user to utilize the method chaining with the generics
in place. |
class |
BaseColumnPlotOptions<T extends BaseColumnPlotOptions>
A common base class for
BoxPlotOptions, ColumnPlotOptions and ColumnRangePlotOptions to prevent code duplication
while still maintaining a cleaner way for the user to utilize the method chaining with the generics
in place. |
class |
BaseGaugePlotOptions<T extends BaseGaugePlotOptions>
A common base class for
GaugePlotOptions and SolidGaugePlotOptions to prevent code duplication
while still maintaining a cleaner way for the user to utilize the method chaining with the generics in place. |
class |
BaseMapOptions<T extends BaseMapOptions>
A common base class for
HeatmapPlotOptions and other map plot types to prevent code duplication while still
maintaining a cleaner way for the user to utilize the method chaining with the generics in place. |
class |
BaseProportionalPlotOptions<T extends BaseProportionalPlotOptions>
A common base class for both
FunnelPlotOptions and PiePlotOptions to prevent code duplication
while still maintaining a cleaner way for the user to utilize the method chaining with the generics
in place. |
class |
BaseStatisticalPlotOptions<T extends BaseStatisticalPlotOptions>
A common base class for both
BoxPlotOptions and ErrorBarPlotOptions to prevent code duplication
while still maintaining a cleaner way for the user to utilize the method chaining with the generics
in place. |
class |
BoxPlotOptions
Represents the general plot options available for all box type series, which can be set either generically
on the chart via the
BaseChart.setBoxPlotOptions(BoxPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
BubblePlotOptions
Represents the general plot options available for all bubble type series, which can be set either generically
on the chart via the
BaseChart.setBubblePlotOptions(BubblePlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
CandlestickPlotOptions
Represents the general plot options available for all Candlestick type series, which can be set either generically
on the chart via the
StockChart.setCandlestickPlotOptions(org.moxieapps.gwt.highcharts.client.plotOptions.CandlestickPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(org.moxieapps.gwt.highcharts.client.plotOptions.PlotOptions) method. |
class |
ColumnPlotOptions
Represents the general plot options available for all column type series, which can be set either generically
on the chart via the
BaseChart.setColumnPlotOptions(ColumnPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
ColumnRangePlotOptions
Represents the general plot options available for all column type series, which can be set either generically
on the chart via the
BaseChart.setColumnRangePlotOptions(ColumnRangePlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
ErrorBarPlotOptions
Represents the general plot options available for all error bar type series, which can be set either generically
on the chart via the
BaseChart.setErrorBarPlotOptions(ErrorBarPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
FlagPlotOptions
Represents the options for the Flags present on the chart.
|
class |
FunnelPlotOptions
Represents the general plot options available for all funnel type series, which can be set either generically
on the chart via the
BaseChart.setFunnelPlotOptions(FunnelPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
GaugePlotOptions
Represents the general plot options available for all gauge type series, which can be set either generically
on the chart via the
BaseChart.setGaugePlotOptions(GaugePlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
HeatmapPlotOptions
represents the general plot options available for all heatmap type series, which can be set wither generically on
the chart via the
BaseChart.setHeatmapPlotOptions(HeatmapPlotOptions) method or directly on a series via the
Series#setPlotOptions(PlotOptions
Note that these options are only needed if you want to specifically control the general options for all heatmap type
series in the entire chart. |
class |
LinePlotOptions
Represents the general plot options available for all line type series, which can be set either generically
on the chart via the
BaseChart.setLinePlotOptions(LinePlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
OHLCPlotOptions
Represents the general plot options available for all OHLC type series, which can be set either generically
on the chart via the
StockChart.setOHLCPlotOptions(org.moxieapps.gwt.highcharts.client.plotOptions.OHLCPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(org.moxieapps.gwt.highcharts.client.plotOptions.PlotOptions) method. |
class |
PiePlotOptions
Represents the general plot options available for all pie type series, which can be set either generically
on the chart via the
BaseChart.setPiePlotOptions(PiePlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
PyramidPlotOptions
Represents the general plot options available for all pyramid type series, which can be set either generically
on the chart via the
BaseChart.setPyramidPlotOptions(PyramidPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
ScatterPlotOptions
Represents the general plot options available for all scatter type series, which can be set either generically
on the chart via the
BaseChart.setScatterPlotOptions(ScatterPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
SeriesPlotOptions
Represents the general plot options available for all series types, which can be set either generically
on the chart via the
BaseChart.setSeriesPlotOptions(SeriesPlotOptions) method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
SolidGaugePlotOptions
Note that this series type requires the "solid-gauge.js" module.
|
class |
SplinePlotOptions
Represents the general plot options available for all spline type series, which can be set either generically
on the chart via the
BaseChart.setSplinePlotOptions(SplinePlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
TreemapPlotOptions
Represents the general plot options available for all treemap type series, which can be set either generically
on the chart via the
BaseChart.setTreemapPlotOptions(TreemapPlotOptions) method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
class |
WaterfallPlotOptions
Represents the general plot options available for all waterfall type series, which can be set either generically
on the chart via the
WaterfallPlotOptions method or directly on a
series via the Series.setPlotOptions(PlotOptions) method. |
| Modifier and Type | Method and Description |
|---|---|
PlotOptions |
PlotOptions.setNegativeColor(Color negativeColor)
Convenience method for setting the "negativeColor" option for the plot options.
|
PlotOptions |
PlotOptions.setNegativeColor(String negativeColor)
Convenience method for setting the "negativeColor" option for the plot options.
|
Copyright © 2015. All Rights Reserved.