public class Series extends BaseOption
General options for all series types.
Configuration options for the series are given in three levels:
line
series are defined in plotOptions.line.Highcharts.chart('container', { plotOptions: { series: { // general options for all series }, line: { // shared options for all line series } }, series: [{ // specific options for this series instance type: 'line' }] });Copyright (c) 2018 Powerbuilt Systems. All rights reserved.
Constructor and Description |
---|
Series() |
Modifier and Type | Method and Description |
---|---|
Number |
getPointStart()
If no x values are given for the points in a series, pointStart defines on what value to start.
|
Number |
pointStart()
If no x values are given for the points in a series, pointStart defines on what value to start.
|
Series |
pointStart(Number pointStart)
If no x values are given for the points in a series, pointStart defines on what value to start.
|
Series |
setPointStart(Number pointStart)
If no x values are given for the points in a series, pointStart defines on what value to start.
|
set_hcNulledOption
public Number pointStart()
If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.
public Series pointStart(Number pointStart)
If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.
pointStart
- the value for the pointStart optionpublic Number getPointStart()
If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.
public Series setPointStart(Number pointStart)
If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.
pointStart
- the value for the pointStart optionCopyright © 2022. All rights reserved.