Trait

com.highcharts.api

RootObject

Related Doc: package api

Permalink

trait RootObject extends Object

Annotations
@RawJSType() @native()
Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RootObject
  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. val Axis: Axis

    Permalink

    A chart can have from 0 axes (pie chart) to multiples.

    A chart can have from 0 axes (pie chart) to multiples. In a normal, single series cartesian chart, there is one X axis and one Y axis.

    The X axis or axes are referenced by chart.xAxis, which is an array of Axis objects. If there is only one axis, it can be referenced through chart.xAxis[0], and multiple axes have increasing indices. The same pattern goes for Y axes.

    If you need to get the axes from a series object, use the series.xAxis andseries.yAxis properties. These are not arrays, as one series can only be associated to one X and one Y axis.

    A third way to reference the axis programmatically is by id. Add an id in the axis configuration options, and get the axis by chart.get(id).

    Configuration options for the axes are given in options.xAxis and options.yAxis.

  5. val Chart: Chart

    Permalink

    The chart object is the JavaScript object representing a single chart in the web page.The pointer to your chart object is returned when a chart is created using the Highcharts.Chart() constructor:

    var chart1 = new Highcharts.Chart(options);
    

    The chart object is the JavaScript object representing a single chart in the web page.The pointer to your chart object is returned when a chart is created using the Highcharts.Chart() constructor:

    var chart1 = new Highcharts.Chart(options);
    

  6. val Element: Element

    Permalink

    The Element class is a JavaScript wrapper for SVG elements used in the rendering layer of Highchart.

    The Element class is a JavaScript wrapper for SVG elements used in the rendering layer of Highchart. Combined with the Renderer object, these elements allows freeform annotation in the charts or even in your HTML pages without creating a chart at all.

  7. val Highcharts: Highcharts

    Permalink

    The namespace under which all other Highcharts variables are assembled is called Highcharts.

    The namespace under which all other Highcharts variables are assembled is called Highcharts.

    var chart1 = new Highcharts.Chart(options);
    

  8. val Point: Point

    Permalink

    The Point object is the JavaScript representation of each data point

    The Point object is the JavaScript representation of each data point

    The object can be accessed in a number of ways. In all point event handlers the point object is this. In the series object all the points are accessed by the series.data array.

    Another way to reference the point programmatically is by id. Add an id in the point configuration options, and get the point object by chart.get(id).

  9. val Renderer: Renderer

    Permalink

    Allows direct access to the Highcharts rendering layer in order to draw primitive shapes like circles, rectangles,paths or text directly on a chart, or independent from any chart.

    Allows direct access to the Highcharts rendering layer in order to draw primitive shapes like circles, rectangles,paths or text directly on a chart, or independent from any chart. The Renderer represents a wrapper object for SVGin modern browsers and VML in IE < 8.

    An existing chart's renderer can be accessed through chart.renderer. To create a renderer independent from a chart, use var renderer = new Highcharts.Renderer(parentNode, width, height); where parentNode is the HTML element where you want to add it.

    The Renderer's methods are chained wherever possible, so you can initiate an element then call for example attr and css and add on that element in one statement.

    Annotating a chart programmatically, independent SVG/VML drawing

  10. val Series: Series

    Permalink

    The Series object is the JavaScript representation of each line, area series, pie etc.

    The Series object is the JavaScript representation of each line, area series, pie etc.

    The object can be accessed in a number of ways. All series and point event handlers give a reference to the series object. The chart object has a series property that is a collection of all the chart's series. The point objects also have the same reference.

    Another way to reference the series programmatically is by id. Add an id in the series configuration options, and get the series object by chart.get(id).

    Configuration options for the series are given in three levels. Options for all series in a chart are given in the plotOptions.series object. Then options for all series of a specific type are given in the plotOptions of that type, for example plotOptions.line. Next, options for one single series are given in the series array.

  11. final def asInstanceOf[T0]: T0

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  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. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  17. def hasOwnProperty(v: String): Boolean

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

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

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

    Permalink
    Definition Classes
    Object
  21. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  24. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toLocaleString(): String

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. 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