public class FunnelPlotOptions extends BaseProportionalPlotOptions<FunnelPlotOptions>
BaseChart.setFunnelPlotOptions(FunnelPlotOptions) )} method or directly on a
series via the Series.setPlotOptions(PlotOptions) method.
Note that these options are only needed if you want to specifically control the general options
for all funnel type series in the entire chart. If you instead want to control the options for all
series in the chart (not just those of a funnel type), then you can use the SeriesPlotOptions
class instead. Or, if you want to control the plot options for just one series (and not all column type
series in the chart), use the Series.setPlotOptions(PlotOptions) method.PlotOptions.Cursor, PlotOptions.PointPlacement, PlotOptions.Stacking| Constructor and Description |
|---|
FunnelPlotOptions() |
| Modifier and Type | Method and Description |
|---|---|
FunnelPlotOptions |
setFunnelDataLabels(FunnelDataLabels funnelDataLabels)
Convenience method for setting the 'dataLabels' plot option to a configuration object
that is more specific to funnel charts.
|
FunnelPlotOptions |
setHeight(Number height)
Convenience method for setting the 'height' option of a funnel chart.
|
FunnelPlotOptions |
setHeight(String height)
Convenience method for setting the 'height' option of a funnel chart.
|
FunnelPlotOptions |
setNeckHeight(Number height)
Convenience method for setting the "height" option for the funnel plot options.
|
FunnelPlotOptions |
setNeckHeight(String neckHeight)
Convenience method for setting the "height" option for the funnel plot options.
|
FunnelPlotOptions |
setNeckWidth(Number neckWidth)
Convenience method for setting the "neckWidth" option for the funnel plot options.
|
FunnelPlotOptions |
setNeckWidth(String neckWidth)
Convenience method for setting the "neckWidth" option for the funnel plot options.
|
FunnelPlotOptions |
setWidth(Number width)
Convenience method for setting the "width" option for the funnel plot options.
|
FunnelPlotOptions |
setWidth(String width)
Convenience method for setting the "width" option for the funnel plot options.
|
getPointLegendItemClickEventHandler, setBorderColor, setBorderColor, setBorderWidth, setCenter, setCenter, setDepth, setIgnoreHiddenPoint, setInnerSize, setInnerSize, setMinSize, setPointLegendItemClickEventHandler, setSize, setSize, setSlicedOffset, setStartAnglegetDataLabels, setAllowPointSelect, setAnimation, setAnimation, setBaseDataLabels, setColor, setColor, setCropThreshold, setCursor, setDashStyle, setDataGrouping, setDataLabels, setEnableMouseTracking, setHoverStateEnabled, setHoverStateLineWidth, setHoverStateMarker, setId, setLegendIndex, setLineWidth, setLinkedTo, setLinkedTo, setMarker, setNegativeColor, setNegativeColor, setPointInterval, setPointPlacement, setPointStart, setSelected, setShadow, setShowCheckbox, setShowInLegend, setStacking, setStickyTracking, setThreshold, setTurboThreshold, setVisible, setZIndex, setZoneAxis, setZonesgetOptions, setOptionpublic FunnelPlotOptions setFunnelDataLabels(FunnelDataLabels funnelDataLabels)
funnelPlotOptions.setOption("/dataLabels/connectorWidth", 2.0);
funnelPlotOptions.setOption("/dataLabels/connectorPadding", 5.0);
etc...
Defines the appearance of the data labels of the pie, which are the static labels for each point.funnelDataLabels - The configuration of how the pie's data labels should appear.PiePlotOptions instance for convenient method chaining.public FunnelPlotOptions setHeight(Number height)
funnelPlotOptions.setOption("height", 12);
The height of the funnel or pyramid. If it is a number it defines the pixel height,
if it is a percentage string it is the percentage of the plot area height.
Note that this method is intended for setting the height to a fixed pixel amount. If instead you want to
set the height as percentage of the plot siz you can use the setHeight(String) instead.
height - The height of a funnel in pixelsPiePlotOptions instance for convenient method chaining.setHeight(String)public FunnelPlotOptions setHeight(String height)
funnelPlotOptions.setOption("height", "12%");
The height of the funnel or pyramid. If it is a number it defines the pixel height,
if it is a percentage string it is the percentage of the plot area height.
Note that this method is intended for setting the height to a percentage of the plot size.
If instead you want to set the height as a set number of pixels you can use the setHeight(Number)
instead.
height - The height of a funnel as a percentage of the plot sizePiePlotOptions instance for convenient method chaining.setHeight(Number)public FunnelPlotOptions setNeckHeight(Number height)
funnelPlotOptions.setOptions("height", 4.0);
The height of the neck, the lower part of a funnel. If it is a number it defines the pixel height,
if it is a percentage string it is the percentage of the plot area height.height - The height, in pixels, of the neck.FunnelPlotOptions instance for convenient method chaining.public FunnelPlotOptions setNeckHeight(String neckHeight)
funnelPlotOptions.setOptions("height", "5%");
The height of the neck, the lower part of a funnel. If it is a number it defines the pixel height,
if it is a percentage string it is the percentage of the plot area height.neckHeight - The height of the neck, as a percentage of the plot area height.FunnelPlotOptions instance for convenient method chaining.public FunnelPlotOptions setNeckWidth(Number neckWidth)
funnelPlotOptions.setOptions("neckWidth", 3.0);
The width of the neck, the lower part of the funnel. A number defines pixel width, a percentage string defines a percentage of the plot area width.neckWidth - The width, in pixels, of the neck.FunnelPlotOptions instance for convenient method chaining.public FunnelPlotOptions setNeckWidth(String neckWidth)
funnelPlotOptions.setOptions("neckWidth", "10%");
The width of the neck, the lower part of the funnel. A number defines pixel width, a percentage string defines a percentage of the plot area width.neckWidth - The width of the neck as a percentage of the plot width.FunnelPlotOptions instance for convenient method chaining.public FunnelPlotOptions setWidth(Number width)
funnelPlotOptions.setOptions("width", 50);
The width of the funnel compared to the width of the plot area, or the pixel width if it is a number. Defaults to 90%.width - The width, in pixels, of the funnel.FunnelPlotOptions instance for convenient method chaining.public FunnelPlotOptions setWidth(String width)
funnelPlotOptions.setOptions("width", "50%");
The width of the funnel compared to the width of the plot area, or the pixel width if it is a number. Defaults to 90%.width - The width of the funnel as a percentage of the plot width.FunnelPlotOptions instance for convenient method chaining.Copyright © 2015. All Rights Reserved.