HCSeriesTrixOptions class

(Highstock) A TRIX series. If the type option is not specified, it is inherited from chart.type.

Implemented types

Constructors

HCSeriesTrixOptions({HCSeriesAccessibilityOptionsObject? accessibility, bool? allowPointSelect, dynamic animation, num? animationLimit, String? boostBlending, num? boostThreshold, String? className, bool? clip, dynamic color, num? colorIndex, String? colorKey, bool? compareStart, bool? compareToMain, bool? connectNulls, bool? crisp, num? cropThreshold, bool? cumulative, bool? cumulativeStart, String? cursor, HCDictionary? custom, String? dashStyle, HCDataGroupingOptionsObject? dataGrouping, dynamic dataLabels, HCDataMappingOptionsObject? dataMapping, HCPlotTrixDataSortingOptions? dataSorting, String? description, bool? enableMouseTracking, HCSeriesEventsOptionsObject? events, String? findNearestPointBy, num? gapSize, String? gapUnit, bool? getExtremesFromAll, bool? inactiveOtherPoints, bool? includeInDataExport, HCSeriesLabelOptionsObject? label, HCSeriesLastPriceOptionsObject? lastPrice, HCSeriesLastVisiblePriceOptionsObject? lastVisiblePrice, String? legendSymbol, dynamic legendSymbolColor, String? linecap, num? lineWidth, String? linkedTo, HCPointMarkerOptionsObject? marker, String? name, dynamic negativeColor, bool? nullInteraction, dynamic onPoint, num? opacity, HCPlotTrixParamsOptions? params, HCPlotSeriesPointOptions? point, dynamic pointDescriptionFormat, dynamic pointDescriptionFormatter, bool? relativeXValue, bool? selected, dynamic shadow, bool? showCheckbox, bool? showInLegend, bool? skipKeyboardNavigation, bool? softThreshold, HCSeriesSonificationOptions? sonification, HCSeriesStatesOptionsObject? states, String? step, bool? stickyTracking, num? threshold, HCSeriesTooltipOptionsObject? tooltip, num? turboThreshold, bool? visible, String? zoneAxis, List<HCSeriesZonesOptionsObject>? zones, bool? zoomEnabled, String? id, num? index, num? legendIndex, dynamic mapData, dynamic stack, String? type, dynamic xAxis, dynamic yAxis, num? zIndex, dynamic allAreas, dynamic dataParser, dynamic dataURL})
const

Properties

accessibility HCSeriesAccessibilityOptionsObject?
(Highstock) Accessibility options for a series.
final
allAreas → dynamic
Not available
final
allowPointSelect bool?
(Highstock) Allow this series' points to be selected by clicking on the graphic (columns, point markers, pie slices, map areas etc).
final
animation → dynamic
(Highstock) Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter unde
final
animationLimit num?
(Highstock) For some series, there is a limit that shuts down animation by default when the total number of points in the chart is too high. For example, for a column chart and its derivatives, animation does not run if there is more than 250 points totally. To disable this cap, set animationLimit
final
boostBlending String?
(Highstock) Sets the color blending in the boost module.
final
boostThreshold num?
(Highstock) Set the point threshold for when a series should enter boost mode.
final
className String?
(Highstock) An additional class name to apply to the series' graphical elements. This option does not replace default class names of the graphical element. Changes to the series' color will also be reflected in a chart's legend and tooltip.
final
clip bool?
(Highstock) Disable this option to allow series rendering in the whole plotting area.
final
color → dynamic
(Highstock) The main color of the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.
final
colorIndex num?
(Highstock) Styled mode only. A specific color index to use for the series, so its graphic representations are given the class name highcharts-color-{n}.
final
colorKey String?
(Highcharts, Highstock, Highmaps) Determines what data value should be used to calculate point color if colorAxis is used. Requires to set min and max if some custom point property is used or if approximation for data grouping is set to 'sum'.
final
compareStart bool?
(Highstock) Defines if comparison should start from the first point within the visible range or should start from the last point before the range.
final
compareToMain bool?
(Highstock) Whether to compare indicator to the main series values or indicator values.
final
connectNulls bool?
(Highcharts, Highstock) Whether to connect a graph line across null points, or render a gap between the two points on either side of the null.
final
crisp bool?
(Highcharts, Highstock, Gantt) When true, each point or column edge is rounded to its nearest pixel in order to render sharp on screen. In some cases, when there are a lot of densely packed columns, this leads to visible difference in column widths or distance between columns. In these cases, settin
final
cropThreshold num?
(Highcharts, Highstock) When the series contains less points than the crop threshold, all points are drawn, even if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On th
final
cumulative bool?
(Highstock) Cumulative Sum feature replaces points' values with the following formula: sum of all previous points' values + current point's value. Works only for points in a visible range. Adds the cumulativeSum field to each point object that can be accessed e.g. in the tooltip.pointFormat.
final
cumulativeStart bool?
(Highstock) Defines if cumulation should start from the first point within the visible range or should start from the last point before the range.
final
cursor String?
(Highstock) 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.
final
custom HCDictionary?
(Highstock) A reserved subspace to store options and values for customized functionality. Here you can add additional data for your own event callbacks and formatter callbacks.
final
dashStyle String?
(Highstock) Name of the dash style to use for the graph, or for some series types the outline of each shape.
final
dataGrouping HCDataGroupingOptionsObject?
(Highstock) Data grouping is the concept of sampling the data values into larger blocks in order to ease readability and increase performance of the JavaScript charts. Highcharts Stock by default applies data grouping when the points become closer than a certain pixel value, determined by the `group
final
dataLabels → dynamic
(Highcharts, Highstock, Highmaps, Gantt) Options for the series data labels, appearing next to each data point.
final
dataMapping HCDataMappingOptionsObject?
(Highstock) The mapping between the data table and the series data points. This is used in conjunction with the dataTable option (on chart or series level) to map columns from the data table to the properties of the data points. The keys of the dataMapping object correspond to the properties of
final
dataParser → dynamic
Not available
final
dataSorting HCPlotTrixDataSortingOptions?
(Highcharts, Highstock) Options for series data sorting.
final
dataURL → dynamic
Not available
final
description String?
(Highstock) Deprecated. Use plotOptions.series.accessibility.description instead.
final
enableMouseTracking bool?
(Highstock) Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.
final
events HCSeriesEventsOptionsObject?
(Highstock) General event handlers for the series items. These event hooks can also be attached to the series at run time using the Highcharts.addEvent function.
final
findNearestPointBy String?
(Highstock) 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
final
gapSize num?
(Highcharts, Highstock) Defines when to display a gap in the graph, together with the gapUnit option.
final
gapUnit String?
(Highcharts, Highstock) Together with gapSize, this option defines where to draw gaps in the graph.
final
getExtremesFromAll bool?
(Highcharts, Highstock, Gantt) 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. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.
final
hashCode int
The hash code for this object.
no setterinherited
id String?
(Highcharts, Highstock, Highmaps, Gantt) An id for the series. This can be used after render time to get a pointer to the series object through chart.get().
final
inactiveOtherPoints bool?
(Highstock) Highlight only the hovered point and fade the remaining points.
final
includeInDataExport bool?
(Highstock) When set to false will prevent the series data from being included in any form of data export.
final
index num?
(Highcharts, Highstock, Highmaps, Gantt) The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.
final
label HCSeriesLabelOptionsObject?
(Highcharts, Highstock, Gantt) Series labels are placed as close to the series as possible in a natural way, seeking to avoid other series. The goal of this feature is to make the chart more easily readable, like if a human designer placed the labels in the optimal position.
final
lastPrice HCSeriesLastPriceOptionsObject?
(Highstock) The line marks the last price from all points.
final
lastVisiblePrice HCSeriesLastVisiblePriceOptionsObject?
(Highstock) The line marks the last price from visible range of points.
final
legendIndex num?
(Highcharts, Highstock, Highmaps, Gantt) The sequential index of the series in the legend.
final
legendSymbol String?
(Highstock) What type of legend symbol to render for this series. Can be one of areaMarker, lineMarker or rectangle.
final
legendSymbolColor → dynamic
(Highcharts, Highstock, Highmaps) Defines the color of the legend symbol for this series. Defaults to undefined, in which case the series color is used. Does not work with styled mode.
final
linecap String?
(Highstock) The line cap used for line ends and line joins on the graph.
final
lineWidth num?
(Highcharts, Highstock) Pixel width of the graph line.
final
linkedTo String?
(Highcharts, Highstock, Gantt) The main series ID that indicator will be based on. Required for this indicator.
final
mapData → dynamic
(Highmaps) An array of objects containing a geometry or path definition and optionally additional properties to join in the data as per the joinBy option. GeoJSON and TopoJSON structures can also be passed directly into mapData.
final
marker HCPointMarkerOptionsObject?
(Highstock) Options for the point markers of line and scatter-like series. Properties like fillColor, lineColor and lineWidth define the visual appearance of the markers. The symbol option defines the shape. Other series types, like column series, don't have markers, but have visual options
final
name String?
(Highcharts, Highstock, Highmaps, Gantt) The name of the series as shown in the legend, tooltip etc. If a dataTable and dataMapping are used, the name defaults to the id of the primary data table column. Otherwise, it defaults to "Series {n}", where n is the index of the series, starting at 1.
final
negativeColor → dynamic
(Highstock) The color for the parts of the graph or points that are below the threshold. Note that zones takes precedence over the negative color. Using negativeColor is equivalent to applying a zone with value of 0.
final
nullInteraction bool?
(Highcharts, Highstock) Whether or not data-points with the value of null should be interactive. When this is set to true, tooltips may highlight these points, and this option also enables keyboard navigation for such points. Format options for such points include nullFormat and `nullFormatter
final
onPoint → dynamic
(Highstock) Options for the Series on point feature. Only pie and sunburst series are supported at this moment.
final
opacity num?
(Highstock) Opacity of a series parts: line, fill (e.g. area) and dataLabels.
final
params HCPlotTrixParamsOptions?
(Highstock) Parameters used in calculation of regression series' points.
final
point HCPlotSeriesPointOptions?
(Highstock) Properties for each single point.
final
pointDescriptionFormat → dynamic
(Highstock) Deprecated. Use series.accessibility.point.descriptionFormat instead.
final
pointDescriptionFormatter → dynamic
(Highstock) Deprecated. Use series.accessibility.point.descriptionFormatter instead.
final
relativeXValue bool?
(Highcharts, Highstock) When true, X values in the data set are relative to the current pointStart, pointInterval and pointIntervalUnit settings. This allows compression of the data for datasets with irregular X values.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
selected bool?
(Highstock) Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name in the legend will be checked for a selected series.
final
shadow → dynamic
(Highstock) Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.
final
showCheckbox bool?
(Highstock) If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.
final
showInLegend bool?
(Highstock) Whether to display this particular series or series type in the legend. Standalone series are shown in legend by default, and linked series are not. Since v7.2.0 it is possible to show series that use colorAxis by setting this option to true.
final
skipKeyboardNavigation bool?
(Highstock) Deprecated. Use series.accessibility.keyboardNavigation instead.
final
softThreshold bool?
(Highcharts, Highstock) When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.
final
sonification HCSeriesSonificationOptions?
(Highstock) Sonification/audio chart options for a series.
final
stack → dynamic
(Highcharts, Highstock) This option allows grouping series in a stacked chart. The stack option can be a string or anything else, as long as the grouped series' stack options match each other after conversion into a string.
final
states HCSeriesStatesOptionsObject?
(Highstock) A collection of options for different series states.
final
step String?
(Highcharts, Highstock) Whether to apply steps to the line. Possible values are left, center and right.
final
stickyTracking bool?
(Highstock) Sticky tracking of mouse events. When true, the 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. T
final
threshold num?
(Highcharts, Highstock) The threshold, also called zero level or base level. For line type series this is only used in conjunction with negativeColor.
final
tooltip HCSeriesTooltipOptionsObject?
(Highstock) A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.
final
turboThreshold num?
(Highcharts, Highstock, Gantt) When a series contains a data array that is longer than this, the Series class looks for data configurations of plain numbers or arrays of numbers. The first and last valid points are checked. If found, the rest of the data is assumed to be the same. This saves expen
final
type String?
(Highcharts, Highstock, Highmaps, Gantt) This property is only in TypeScript non-optional and might be undefined in series objects from unknown sources.
final
visible bool?
(Highstock) Set the initial visibility of the series.
final
xAxis → dynamic
(Highcharts, Highstock) When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.
final
yAxis → dynamic
(Highcharts, Highstock) When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.
final
zIndex num?
(Highcharts, Highstock) Define the visual z index of the series.
final
zoneAxis String?
(Highcharts, Highstock) Defines the Axis on which the zones are applied.
final
zones List<HCSeriesZonesOptionsObject>?
(Highcharts, Highstock) An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option. The zone definitions have to be in ascending order regarding to the value.
final
zoomEnabled bool?
(Highstock) Whether to zoom non-cartesian series. If chart.zooming is set, the option allows to disable zooming on an individual non-cartesian series. By default zooming is enabled for all series.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited