Trait/Object

io.udash.wrappers.highcharts.config

Data

Related Docs: object Data | package config

Permalink

trait Data extends Object

Annotations
@ScalaJSDefined() @RawJSType()
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

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: UndefOr[DateType]

    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.

    Annotations
    @JSOptional()
    Example:
    1. Columns

  7. val complete: UndefOr[Function1[HighchartsConfig, Any]]

    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.

    Annotations
    @JSOptional()
  8. val csv: UndefOr[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.

    The built-in CSV parser doesn't support all flavours of CSV, so in some cases it may be necessary to use an external CSV parser. See this example of parsing CSV through the MIT licensed Papa Parse library.

    Annotations
    @JSOptional()
    Example:
    1. Data from CSV

  9. val dateFormat: UndefOr[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
    Annotations
    @JSOptional()
  10. val decimalPoint: UndefOr[String]

    Permalink

    The decimal point used for parsing numbers in the CSV.

    The decimal point used for parsing numbers in the CSV.

    Annotations
    @JSOptional()
  11. val endColumn: UndefOr[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.

    Annotations
    @JSOptional()
    Example:
    1. Limited data

  12. val endRow: UndefOr[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.

    Annotations
    @JSOptional()
    Example:
    1. Limited data

  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: UndefOr[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.

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

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

    Permalink

    The key for a Google Spreadsheet to load.

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

    Annotations
    @JSOptional()
  19. val googleSpreadsheetWorksheet: UndefOr[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

    Annotations
    @JSOptional()
  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: UndefOr[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 ,.

    Annotations
    @JSOptional()
    Example:
    1. Delimiters

  25. val lineDelimiter: UndefOr[String]

    Permalink

    Line delimiter for parsing CSV.

    Line delimiter for parsing CSV.

    Annotations
    @JSOptional()
    Example:
    1. Delimiters

  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: UndefOr[Function1[String, Int]]

    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.

    Annotations
    @JSOptional()
  30. val parsed: UndefOr[Function1[DateType, Boolean]]

    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.

    Annotations
    @JSOptional()
  31. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  32. val rows: UndefOr[DateType]

    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.

    Annotations
    @JSOptional()
    Example:
    1. Data in rows

  33. val seriesMapping: UndefOr[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.

    Annotations
    @JSOptional()
  34. val startColumn: UndefOr[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.

    Annotations
    @JSOptional()
    Example:
    1. Limited data

  35. val startRow: UndefOr[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.

    Annotations
    @JSOptional()
    Example:
    1. Limited data

  36. val switchRowsAndColumns: UndefOr[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.

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

    Permalink
    Definition Classes
    AnyRef
  38. val table: UndefOr[String]

    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.

    Annotations
    @JSOptional()
    Example:
    1. Parsed table

  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