public abstract class PyramidOptions extends AbstractPlotOptions
Constructor and Description |
---|
PyramidOptions() |
Modifier and Type | Method and Description |
---|---|
abstract void |
addKey(String key)
Adds key to the keys array
|
abstract void |
addZone(Zones zone)
Adds zone to the zones array
|
abstract Boolean |
getAllowPointSelect() |
abstract Number |
getAnimationLimit() |
abstract String[] |
getCenter() |
abstract ChartType |
getChartType() |
abstract String |
getClassName() |
abstract Number |
getColorIndex() |
abstract Cursor |
getCursor() |
abstract DataLabelsFunnel |
getDataLabels() |
abstract Number |
getDepth() |
abstract String |
getDescription() |
abstract Boolean |
getEnableMouseTracking() |
abstract Boolean |
getExposeElementToA11y() |
abstract Dimension |
getFindNearestPointBy() |
abstract Boolean |
getGetExtremesFromAll() |
abstract String |
getHeight() |
abstract String[] |
getKeys() |
abstract String |
getLinkedTo() |
abstract Number |
getMinSize() |
abstract String |
getPointDescriptionFormatter() |
abstract Boolean |
getReversed() |
abstract Boolean |
getSelected() |
abstract Boolean |
getShadow() |
abstract Boolean |
getShowInLegend() |
abstract Boolean |
getSkipKeyboardNavigation() |
abstract Number |
getSlicedOffset() |
abstract States |
getStates() |
abstract Boolean |
getStickyTracking() |
abstract SeriesTooltip |
getTooltip() |
abstract Boolean |
getVisible() |
abstract String |
getWidth() |
abstract ZoneAxis |
getZoneAxis() |
abstract Zones[] |
getZones() |
abstract void |
removeKey(String key)
Removes first occurrence of key in keys array
|
abstract void |
removeZone(Zones zone)
Removes first occurrence of zone in zones array
|
abstract void |
setAllowPointSelect(Boolean allowPointSelect)
Allow this series' points to be selected by clicking on the markers, bars
or pie slices.
|
abstract void |
setAnimationLimit(Number animationLimit)
For some series, there is a limit that shuts down initial animation by
default when the total number of points in the chart is too high.
|
abstract void |
setCenter(String[] center)
The center of the series.
|
abstract void |
setCenter(String x,
String y) |
abstract void |
setClassName(String className)
A class name to apply to the series' graphical elements.
|
abstract void |
setColorIndex(Number colorIndex)
A specific color index to use for the series, so its graphic
representations are given the class name
highcharts-color-{n} . |
abstract void |
setCursor(Cursor cursor)
You can set the cursor to "pointer" if you have click events attached to
the series, to signal to the user that the points and lines can be
clicked.
|
abstract void |
setDataLabels(DataLabelsFunnel dataLabels)
Specific data labels configuration for a series type
|
abstract void |
setDepth(Number depth)
The thickness of a 3D pie.
|
abstract void |
setDescription(String description)
A description of the series to add to the screen reader information about
the series.
|
abstract void |
setEnableMouseTracking(Boolean enableMouseTracking)
Enable or disable the mouse tracking for a specific series.
|
abstract void |
setExposeElementToA11y(Boolean exposeElementToA11y)
By default, series are exposed to screen readers as regions.
|
abstract void |
setFindNearestPointBy(Dimension findNearestPointBy)
Determines whether the series should look for the nearest point in both
dimensions or just the x-dimension when hovering the series.
|
abstract void |
setGetExtremesFromAll(Boolean getExtremesFromAll)
Whether to use the Y extremes of the total chart width or only the zoomed
area when zooming in on parts of the X axis.
|
abstract void |
setHeight(String height)
Sets the height using String presentation.
|
abstract void |
setKeys(String... keys)
An array specifying which option maps to which key in the data point
array.
|
abstract void |
setLinkedTo(String linkedTo)
The ID of another series to link to.
|
abstract void |
setMinSize(Number minSize)
The minimum size for a pie in response to auto margins.
|
abstract void |
setPointDescriptionFormatter(String _fn_pointDescriptionFormatter) |
abstract void |
setReversed(Boolean reversed)
The pyramid is reversed by default, as opposed to the funnel, which
shares the layout engine, and is not reversed.
|
abstract void |
setSelected(Boolean selected)
Whether to select the series initially.
|
abstract void |
setShadow(Boolean shadow)
Whether to apply a drop shadow to the graph line.
|
abstract void |
setShowInLegend(Boolean showInLegend)
Whether to display this particular series or series type in the legend.
|
abstract void |
setSkipKeyboardNavigation(Boolean skipKeyboardNavigation)
Whether or not to skip past the points in this series for keyboard
navigation.
|
abstract void |
setSlicedOffset(Number slicedOffset)
If a point is sliced, moved out from the center, how many pixels should
it be moved?.
|
abstract void |
setStates(States states)
A wrapper object for all the series options in specific states.
|
abstract void |
setStickyTracking(Boolean stickyTracking)
Sticky tracking of mouse events.
|
abstract void |
setTooltip(SeriesTooltip tooltip)
A configuration object for the tooltip rendering of each single series.
|
abstract void |
setVisible(Boolean visible)
Set the initial visibility of the series.
|
abstract void |
setWidth(String width)
Sets the width using String presentation.
|
abstract void |
setZoneAxis(ZoneAxis zoneAxis)
Defines the Axis on which the zones are applied.
|
abstract void |
setZones(Zones... zones)
An array defining zones within a series.
|
public abstract ChartType getChartType()
getChartType
in class AbstractPlotOptions
public abstract Boolean getAllowPointSelect()
setAllowPointSelect(Boolean)
public abstract void setAllowPointSelect(Boolean allowPointSelect)
public abstract Number getAnimationLimit()
setAnimationLimit(Number)
public abstract void setAnimationLimit(Number animationLimit)
animationLimit
to Infinity
.public abstract void setCenter(String[] center)
public abstract String getClassName()
setClassName(String)
public abstract void setClassName(String className)
public abstract Number getColorIndex()
setColorIndex(Number)
public abstract void setColorIndex(Number colorIndex)
highcharts-color-{n}
.public abstract Cursor getCursor()
setCursor(Cursor)
public abstract void setCursor(Cursor cursor)
public abstract DataLabelsFunnel getDataLabels()
setDataLabels(DataLabelsFunnel)
public abstract void setDataLabels(DataLabelsFunnel dataLabels)
dataLabels
- public abstract Number getDepth()
setDepth(Number)
public abstract void setDepth(Number depth)
public abstract String getDescription()
setDescription(String)
public abstract void setDescription(String description)
public abstract Boolean getEnableMouseTracking()
setEnableMouseTracking(Boolean)
public abstract void setEnableMouseTracking(Boolean enableMouseTracking)
public abstract Boolean getExposeElementToA11y()
setExposeElementToA11y(Boolean)
public abstract void setExposeElementToA11y(Boolean exposeElementToA11y)
public abstract Dimension getFindNearestPointBy()
setFindNearestPointBy(Dimension)
public abstract void setFindNearestPointBy(Dimension findNearestPointBy)
Determines whether the series should look for the nearest point in both
dimensions or just the x-dimension when hovering the series. Defaults to
'xy'
for scatter series and 'x'
for most other
series. If the data has duplicate x-values, it is recommended to set this
to 'xy'
to allow hovering over all points.
Applies only to series types using nearest neighbor search (not direct hover) for tooltip.
public abstract Boolean getGetExtremesFromAll()
setGetExtremesFromAll(Boolean)
public abstract void setGetExtremesFromAll(Boolean getExtremesFromAll)
public abstract String getHeight()
setHeight(String)
public abstract void setHeight(String height)
height
- CSS style string representationpublic abstract String[] getKeys()
setKeys(String...)
public abstract void setKeys(String... keys)
public abstract void addKey(String key)
key
- to addsetKeys(String...)
public abstract void removeKey(String key)
key
- to removesetKeys(String...)
public abstract String getLinkedTo()
setLinkedTo(String)
public abstract void setLinkedTo(String linkedTo)
public abstract Number getMinSize()
setMinSize(Number)
public abstract void setMinSize(Number minSize)
public abstract String getPointDescriptionFormatter()
public abstract void setPointDescriptionFormatter(String _fn_pointDescriptionFormatter)
public abstract Boolean getReversed()
setReversed(Boolean)
public abstract void setReversed(Boolean reversed)
public abstract Boolean getSelected()
setSelected(Boolean)
public abstract void setSelected(Boolean selected)
showCheckbox
is
true, the checkbox next to the series name will be checked for a selected
series.public abstract Boolean getShadow()
setShadow(Boolean)
public abstract void setShadow(Boolean shadow)
public abstract Boolean getShowInLegend()
setShowInLegend(Boolean)
public abstract void setShowInLegend(Boolean showInLegend)
public abstract Boolean getSkipKeyboardNavigation()
setSkipKeyboardNavigation(Boolean)
public abstract void setSkipKeyboardNavigation(Boolean skipKeyboardNavigation)
public abstract Number getSlicedOffset()
setSlicedOffset(Number)
public abstract void setSlicedOffset(Number slicedOffset)
public abstract States getStates()
setStates(States)
public abstract void setStates(States states)
public abstract Boolean getStickyTracking()
setStickyTracking(Boolean)
public abstract void setStickyTracking(Boolean stickyTracking)
mouseOut
event on a series isn't triggered until the mouse moves over another
series, or out of the plot area. When false, the mouseOut
event on a series is triggered when the mouse leaves the area around the
series' graph or markers. This also implies the tooltip. When
stickyTracking
is false and tooltip.shared
is
false, the tooltip will be hidden when moving the mouse between series.public abstract SeriesTooltip getTooltip()
setTooltip(SeriesTooltip)
public abstract void setTooltip(SeriesTooltip tooltip)
public abstract Boolean getVisible()
setVisible(Boolean)
public abstract void setVisible(Boolean visible)
public abstract String getWidth()
setWidth(String)
public abstract void setWidth(String width)
width
- CSS style string representationpublic abstract ZoneAxis getZoneAxis()
setZoneAxis(ZoneAxis)
public abstract void setZoneAxis(ZoneAxis zoneAxis)
public abstract Zones[] getZones()
setZones(Zones...)
public abstract void setZones(Zones... zones)
zoneAxis
option.public abstract void addZone(Zones zone)
zone
- to addsetZones(Zones...)
public abstract void removeZone(Zones zone)
zone
- to removesetZones(Zones...)
public abstract String[] getCenter()
Copyright © 2023. All rights reserved.