public class HeatmapPlotOptions extends BaseMapOptions<HeatmapPlotOptions>
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. If you instead want to control the options for all series in the chart (not just those
of a spline 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 spline type series in the chart,) use the Series#setPlotOptions)
method.PlotOptions.Cursor, PlotOptions.PointPlacement, PlotOptions.Stacking| Constructor and Description |
|---|
HeatmapPlotOptions() |
| Modifier and Type | Method and Description |
|---|---|
HeatmapPlotOptions |
setBorderRadius(Number borderRadius)
Convenience method for setting the 'borderRadius' option of the heatmap.
|
HeatmapPlotOptions |
setBorderWidth(Number borderWidth)
convenience method for setting the 'borderWidth' option of the heatmap.
|
HeatmapPlotOptions |
setColorByPoint(boolean colorByPoint)
convenience method for setting the 'colorByPoint' option of the heatmap.
|
HeatmapPlotOptions |
setColors(String... colors)
Convenience method for setting the 'colors' option of the heatmap.
|
HeatmapPlotOptions |
setColSize(Number colSize)
Convenience method for setting the 'colSize' option of the heatmap.
|
HeatmapPlotOptions |
setRowSize(Number rowSize)
Convenience method for setting the 'rowsize' option of the heatmap.
|
setBorderColor, setHoverStateBorderColor, setHoverStateBorderWidth, setHoverStateBrightness, setHoverStateColor, setHoverStateEnabled, setNormalStateAnimation, setNormalStateAnimation, setSelectStateBorderColor, setSelectStateBorderWidth, setSelectStateColor, setSelectStateEnabledgetDataLabels, setAllowPointSelect, setAnimation, setAnimation, setBaseDataLabels, setColor, setColor, setCropThreshold, setCursor, setDashStyle, setDataGrouping, setDataLabels, setEnableMouseTracking, 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 HeatmapPlotOptions setBorderRadius(Number borderRadius)
heatmapPlotOptions.setOption("borderRadius", 25);
The corner radius of the border surrounding each column or bar. Defaults to 0.borderRadius - The corner radius of the border surrounding each column or bar.HeatmapPlotOptions instance for convenient method chaining.public HeatmapPlotOptions setBorderWidth(Number borderWidth)
heatmapPlotOptions.setOption("borderWidth", true);
The width of the border surrounding each column or bar. Defaults to 1.setBorderWidth in class BaseMapOptions<HeatmapPlotOptions>borderWidth - The width of the border surrounding each column or bar.HeatmapPlotOptions instance for convenient method chaining.public HeatmapPlotOptions setColorByPoint(boolean colorByPoint)
heatmapPlotOptions.setOption("colorByPoint", true);
When using automatic point colors pulled from the options.colors collection, this option determines whether the
chart should receive one color per series or one color per point. Defaults to false.colorByPoint - Whether the chart should receive one color per series or one color per point.HeatmapPlotOptions instance for convenient method chaining.public HeatmapPlotOptions setColors(String... colors)
heatmapPlotOptions.setOption("colors", "#EBEE00", "#FF00FF", "#0000FF");
A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.colors - An array of strings representing the colors to apply to the heatmap.HeatmapPlotOptions instance for convenient method chaining.setColorByPoint(boolean)public HeatmapPlotOptions setColSize(Number colSize)
heatmapPlotOptions.setOption("colSize", 10);
The column size - how many X axis units each column in the heatmap should span. Defaults to 1.colSize - The number of units on the x-axis the map will span.HeatmapPlotOptions instance for convenient method chaining.public HeatmapPlotOptions setRowSize(Number rowSize)
heatmapPlotOptions.setOption("rowsize", 10);
The row size - how many Y axis units each heatmap row should span. Defaults to 1.rowSize - The number of units on the y-axis the heatmap should span.HeatmapPlotOptions instance for convenient method chaining.Copyright © 2015. All Rights Reserved.