Class/Object

com.highmaps.config

HighmapsConfig

Related Docs: object HighmapsConfig | package config

Permalink

class HighmapsConfig extends Object

Annotations
@RawJSType() @ScalaJSDefined()
Note

JavaScript name: HighmapsConfig

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

Instance Constructors

  1. new HighmapsConfig()

    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. val accessibility: UndefOr[CleanJsObject[Accessibility]]

    Permalink

    Options for configuring accessibility for the chart.

    Options for configuring accessibility for the chart. Requires the accessibility module to be loaded. For a description of the module and information on its features, see Highcharts Accessibility.

    Since

    5.0.0

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. val chart: UndefOr[CleanJsObject[Chart]]

    Permalink

    Options regarding the chart area and plot area as well as general chart options.

  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. val colorAxis: UndefOr[CleanJsObject[ColorAxis]]

    Permalink

    A color axis for choropleth mapping.

    A color axis for choropleth mapping. Visually, the color axis will appear as a gradient or as separate items inside the legend, depending on whether the axis is scalar or based on data classes.

    For supported color formats, see the docs article about colors.

    A scalar color axis is represented by a gradient. The colors either range between the minColor and the maxColor, or for more fine grained control the colors can be defined in stops. Often times, the color axis needs to be adjusted to get the right color spread for the data. In addition to stops, consider using a logarithmic axis type, or setting min and max to avoid the colors being determined by outliers.

    When dataClasses are used, the ranges are subdivided into separate classes like categories based on their values. This can be used for ranges between two values, but also for a true category. However, when your data is categorized, it may be as convenient to add each category to a separate series.

    See the Axis object for programmatic access to the axis.

  9. val colors: UndefOr[Array[|[String, Object]]]

    Permalink

    An array containing the default colors for the chart's series.

    An array containing the default colors for the chart's series. When all colors are used, new colors are pulled from the start again. Defaults to:

    colors: ['#7cb5ec', '#434348', '#90ed7d', '#f7a35c', '#8085e9',
       '#f15c80', '#e4d354', '#8085e8', '#8d4653', '#91e8e1']
    

    In styled mode, the colors option doesn't exist. Instead, colors are defined in CSS and applied either through series or point class names, or through the chart.colorCount option.

  10. val credits: UndefOr[CleanJsObject[Credits]]

    Permalink

    Highchart by default puts a credits label in the lower right corner of the chart.

    Highchart by default puts a credits label in the lower right corner of the chart. This can be changed using these options.

  11. val defs: UndefOr[Object]

    Permalink

    Styled mode only.

    Styled mode only. Configuration object for adding SVG definitions for reusable elements. See gradients, shadows and patterns for more information and code examples.

    Since

    5.0.0

  12. val drilldown: UndefOr[CleanJsObject[Drilldown]]

    Permalink

    Options for drill down, the concept of inspecting increasingly high resolution data through clicking on chart items like columns or pie slices.

    Options for drill down, the concept of inspecting increasingly high resolution data through clicking on chart items like columns or pie slices.

    The drilldown feature requires the drilldown.js file to be loaded, found in the modules directory of the download package, or online at code.highcharts.com/modules/drilldown.js.

    Example:
    1. Map drilldown

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. val exporting: UndefOr[CleanJsObject[Exporting]]

    Permalink

    Options for the exporting module.

    Options for the exporting module. For an overview on the matter, see the docs.

  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  18. val global: UndefOr[CleanJsObject[Global]]

    Permalink

    Global options that don't apply to each chart.

    Global options that don't apply to each chart. These options, like the lang options, must be set using the Highcharts.setOptions method.

    Highcharts.setOptions({
    	global: {
    		useUTC: false
    	}
    });
    

  19. def hasOwnProperty(v: String): Boolean

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

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

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

    Permalink
    Definition Classes
    Object
  23. val labels: UndefOr[CleanJsObject[Labels]]

    Permalink

    HTML labels that can be positioned anywhere in the chart area.

  24. val lang: UndefOr[CleanJsObject[Lang]]

    Permalink

    Language object.

    Language object. The language object is global and it can't be set on each chart initiation. Instead, use Highcharts.setOptions to set it before any chart is initiated.

    Highcharts.setOptions({
    	lang: {
    		months: ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin',  'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],
    		weekdays: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi']
    	}
    });
    

  25. val legend: UndefOr[CleanJsObject[Legend]]

    Permalink

    The legend is a box containing explanations for the different elements of a chart.

    The legend is a box containing explanations for the different elements of a chart. A Highmaps legend by default contains one legend item per series, but if a colorAxis is defined, the axis will be displayed in the legen. Either as a gradient, or as multiple legend items for dataClasses.

  26. val loading: UndefOr[CleanJsObject[Loading]]

    Permalink

    The loading options control the appearance of the loading screen that covers the plot area on chart operations.

    The loading options control the appearance of the loading screen that covers the plot area on chart operations. This screen only appears after an explicit call to chart.showLoading(). It is a utility for developers to communicate to the end user that something is going on, for example while retrieving new data via an XHR connection. The "Loading..." text itself is not part of this configuration object, but part of the lang object.

    For demo cases, see the loading configuration object for basic Highcharts.

  27. val mapNavigation: UndefOr[CleanJsObject[MapNavigation]]

    Permalink

    A collection of options for zooming and panning in a map.

  28. val navigation: UndefOr[CleanJsObject[Navigation]]

    Permalink

    A collection of options for buttons and menus appearing in the exporting module.

    A collection of options for buttons and menus appearing in the exporting module.

    The examples below point to basic Highcharts demos, but the syntax for Highmaps are the exact same.

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

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

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

    Permalink
    Definition Classes
    AnyRef
  32. val plotOptions: UndefOr[CleanJsObject[PlotOptions]]

    Permalink

    The plotOptions is a wrapper object for config objects for each series type.

    The plotOptions is a wrapper object for config objects for each series type. The config objects for each series can also be overridden for each series item as given in the series array.

    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.

  33. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  34. val responsive: UndefOr[CleanJsObject[Responsive]]

    Permalink

    Allows setting a set of rules to apply for different screen or chart sizes.

    Allows setting a set of rules to apply for different screen or chart sizes. Each rule specifies additional chart options.

    Example:
    1. Responsive axis, legend and class name.

    Since

    5.0.0

  35. val series: UndefOr[Array[CleanJsObject[|[|[|[|[SeriesHeatmap, SeriesMap], SeriesMapbubble], SeriesMapline], SeriesMappoint]]]]

    Permalink

    The actual series to append to the chart.

    The actual series to append to the chart. In addition to the members listed below, any member of the plotOptions for that specific type of plot can be added to a series individually.

  36. val subtitle: UndefOr[CleanJsObject[Subtitle]]

    Permalink

    The chart's subtitle.

    The chart's subtitle. This can be used both to display a subtitle below the main title, and to display random text anywhere in the chart. The subtitle can be updated after chart initialization through the Chart.setTitle() method.

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

    Permalink
    Definition Classes
    AnyRef
  38. val title: UndefOr[CleanJsObject[Title]]

    Permalink

    The chart's main title.

    The chart's main title.

  39. def toLocaleString(): String

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

    Permalink
    Definition Classes
    AnyRef → Any
  41. val tooltip: UndefOr[CleanJsObject[Tooltip]]

    Permalink

    Options for the tooltip that appears when the user hovers over a series or point.

  42. def valueOf(): Any

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. val xAxis: UndefOr[CleanJsObject[XAxis]]

    Permalink

    The X axis.

    The X axis. A Highcharts map has hidden X and Y axes to control layout of the shapes and features like zooming and panning. Zooming is in effect the same as setting the extremes of one of the axes, and Highmaps is set up to make the other axis zoom the same amount.

    Highmaps uses the coordinate system of the map points' path configurations.

    See the Axis object for programmatic access to the axis.

  47. val yAxis: UndefOr[CleanJsObject[YAxis]]

    Permalink

    The Y axis.

    The Y axis. A Highcharts map has hidden X and Y axes to control layout of the shapes and features like zooming and panning. Zooming is in effect the same as setting the extremes of one of the axes, and Highmaps is set up to make the other axis zoom the same amount.

    Highmaps uses the coordinate system of the map points' path configurations.

    See the Axis object for programmatic access to the axis.

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped