Class

com.highcharts.config

Data

Related Doc: package config

Permalink

class Data extends Object

Annotations
@RawJSType() @ScalaJSDefined()
Note

JavaScript name: data

Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Data
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Data()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. val columns: Array[Array[Any]]

    Permalink

    A two-dimensional array representing the input data on tabular form.

    A two-dimensional array representing the input data on tabular form. This input can be used when the data is already parsed, for example from a grid view component. Each cell can be a string or number. If not switchRowsAndColumns is set, the columns are interpreted as series.

    Example:
    1. Columns

    Since

    4.0

  7. val complete: Function

    Permalink

    The callback that is evaluated when the data is finished loading, optionally from an external source, and parsed.

    The callback that is evaluated when the data is finished loading, optionally from an external source, and parsed. The first argument passed is a finished chart options object, containing the series. These options can be extended with additional options and passed directly to the chart constructor.

    Since

    4.0

  8. val csv: String

    Permalink

    A comma delimited string to be parsed.

    A comma delimited string to be parsed. Related options are startRow, endRow, startColumn and endColumn to delimit what part of the table is used. The lineDelimiter and itemDelimiter options define the CSV delimiter formats.

    Example:
    1. Data from CSV

    Since

    4.0

  9. val dateFormat: String

    Permalink

    Which of the predefined date formats in Date.prototype.dateFormats to use to parse date values.

    Which of the predefined date formats in Date.prototype.dateFormats to use to parse date values. Defaults to a best guess based on what format gives valid and ordered dates.

    Valid options include:

    • YYYY-mm-dd
    • dd/mm/YYYY
    • mm/dd/YYYY
    • dd/mm/YY
    • mm/dd/YY
    Since

    4.0

  10. val decimalPoint: String

    Permalink

    The decimal point used for parsing numbers in the CSV.

    The decimal point used for parsing numbers in the CSV.

    Since

    4.1.0

  11. val endColumn: Double

    Permalink

    In tabular input data, the last column (indexed by 0) to use.

    In tabular input data, the last column (indexed by 0) to use. Defaults to the last column containing data.

    Example:
    1. Limited data

    Since

    4.0

  12. val endRow: Double

    Permalink

    In tabular input data, the last row (indexed by 0) to use.

    In tabular input data, the last row (indexed by 0) to use. Defaults to the last row containing data.

    Example:
    1. Limited data

    Since

    4.0.4

  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. val firstRowAsNames: Boolean

    Permalink

    Whether to use the first row in the data set as series names.

    Whether to use the first row in the data set as series names.

    Since

    4.1.0

  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. val googleSpreadsheetKey: String

    Permalink

    The key for a Google Spreadsheet to load.

    The key for a Google Spreadsheet to load. See general information on GS.

    Since

    4.0

  19. val googleSpreadsheetWorksheet: String

    Permalink

    The Google Spreadsheet worksheet to use in combination with googleSpreadsheetKey.

    The Google Spreadsheet worksheet to use in combination with googleSpreadsheetKey. The available id's from your sheet can be read from https://spreadsheets.google.com/feeds/worksheets/{key}/public/basic

    Since

    4.0

  20. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  21. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  22. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  23. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  24. val itemDelimiter: String

    Permalink

    Item or cell delimiter for parsing CSV.

    Item or cell delimiter for parsing CSV. Defaults to the tab character \t if a tab character is found in the CSV string, if not it defaults to ,.

    Example:
    1. Delimiters

    Since

    4.0

  25. val lineDelimiter: String

    Permalink

    Line delimiter for parsing CSV.

    Line delimiter for parsing CSV.

    Example:
    1. Delimiters

    Since

    4.0

  26. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. val parseDate: Function

    Permalink

    A callback function to parse string representations of dates into JavaScript timestamps.

    A callback function to parse string representations of dates into JavaScript timestamps. Should return an integer timestamp on success.

    Since

    4.0

  30. val parsed: Function

    Permalink

    A callback function to access the parsed columns, the two-dimentional input data array directly, before they are interpreted into series data and categories.

    A callback function to access the parsed columns, the two-dimentional input data array directly, before they are interpreted into series data and categories. Return false to stop completion, or call this.complete() to continue async.

    Since

    4.0

  31. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  32. val rows: Array[Array[Any]]

    Permalink

    The same as the columns input option, but defining rows intead of columns.

    The same as the columns input option, but defining rows intead of columns.

    Example:
    1. Data in rows

    Since

    4.0

  33. val seriesMapping: Array[Object]

    Permalink

    An array containing object with Point property names along with what column id the property should be taken from.

    An array containing object with Point property names along with what column id the property should be taken from.

    Since

    4.0.4

  34. val startColumn: Double

    Permalink

    In tabular input data, the first column (indexed by 0) to use.

    In tabular input data, the first column (indexed by 0) to use.

    Example:
    1. Limited data

    Since

    4.0

  35. val startRow: Double

    Permalink

    In tabular input data, the first row (indexed by 0) to use.

    In tabular input data, the first row (indexed by 0) to use.

    Example:
    1. Limited data

    Since

    4.0

  36. val switchRowsAndColumns: Boolean

    Permalink

    Switch rows and columns of the input data, so that this.columns effectively becomes the rows of the data set, and the rows are interpreted as series.

    Switch rows and columns of the input data, so that this.columns effectively becomes the rows of the data set, and the rows are interpreted as series.

    Since

    4.0

  37. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  38. val table: Any

    Permalink

    A HTML table or the id of such to be parsed as input data.

    A HTML table or the id of such to be parsed as input data. Related options are startRow, endRow, startColumn and endColumn to delimit what part of the table is used.

    Example:
    1. Parsed table

    Since

    4.0

  39. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  40. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  41. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  42. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped