object Chart
- Alphabetic
- By Inheritance
- Chart
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
apply(alignTicks: UndefOr[Boolean] = js.undefined, animation: UndefOr[Animation] = js.undefined, backgroundColor: UndefOr[Color] = js.undefined, borderColor: UndefOr[Color] = js.undefined, borderRadius: UndefOr[Double] = js.undefined, borderWidth: UndefOr[Double] = js.undefined, className: UndefOr[String] = js.undefined, colorCount: UndefOr[Int] = js.undefined, description: UndefOr[String] = js.undefined, events: UndefOr[ChartEvents] = js.undefined, height: UndefOr[Double] = js.undefined, ignoreHiddenSeries: UndefOr[Boolean] = js.undefined, inverted: UndefOr[Boolean] = js.undefined, margin: UndefOr[Margins] = js.undefined, options3d: UndefOr[ChartOptions3d] = js.undefined, panKey: UndefOr[String] = js.undefined, panning: UndefOr[Boolean] = js.undefined, pinchType: UndefOr[String] = js.undefined, plotBackgroundColor: UndefOr[Color] = js.undefined, plotBackgroundImage: UndefOr[String] = js.undefined, plotBorderColor: UndefOr[Color] = js.undefined, plotBorderWidth: UndefOr[Double] = js.undefined, plotShadow: UndefOr[Shadow] = js.undefined, polar: UndefOr[Boolean] = js.undefined, reflow: UndefOr[Boolean] = js.undefined, renderTo: UndefOr[|[String, Object]] = js.undefined, resetZoomButton: UndefOr[ChartResetZoomButton] = js.undefined, selectionMarkerFill: UndefOr[Color] = js.undefined, shadow: UndefOr[Shadow] = js.undefined, showAxes: UndefOr[Boolean] = js.undefined, spacing: UndefOr[Spacing] = js.undefined, style: UndefOr[String] = js.undefined, typeDescription: UndefOr[String] = js.undefined, width: UndefOr[Double] = js.undefined, zoomType: UndefOr[ZoomType] = js.undefined): Chart
- alignTicks
When using multiple axis, the ticks of two or more opposite axes will automatically be aligned by adding ticks to the axis or axes with the least ticks, as if
tickAmountwere specified.. . This can be prevented by settingalignTicksto false. If the grid lines look messy, it's a good idea to hide them for the secondary axis by settinggridLineWidthto 0.- animation
Set the overall animation for all chart updating. Animation can be disabled throughout. the chart by setting it to false here. It can be overridden for each individual. API method as a function parameter. The only animation not affected by this option is the . initial series animation, see plotOptions.series.animation.. . The animation can either be set as a boolean or a configuration object. If
true,. it will use the 'swing' jQuery easing and a duration of 500 ms. If used as a configuration object,. the following properties are supported: . <dl>. <dt>duration</dt>.- The duration of the animation in milliseconds.
. . <dt>easing</dt>.- A string reference to an easing function set on the
. </dl>Mathobject. See the easing demo.- backgroundColor
The background color or gradient for the outer chart area.
- borderColor
The color of the outer chart border.
- borderRadius
The corner radius of the outer chart border.
- borderWidth
The pixel width of the outer chart border.
- className
A CSS class name to apply to the charts container
div, allowing unique CSS styling for each chart.- colorCount
In styled mode, this sets how many colors the class names should rotate between.
- description
A text description of the chart. f the Accessibility module is loaded, this is included by default as a long description of the chart and its contents in the hidden screen reader information region.
- events
Event listeners for the chart.
- height
An explicit height for the chart. By default (when
null) the height is calculated from the offset height of the containing element, or 400 pixels if the containing element's height is 0.- ignoreHiddenSeries
If true, the axes will scale to the remaining visible series once one series is hidden. If false, hiding and showing a series will not affect the axes or the other series. For stacks, once one series within the stack is hidden, the rest of the stack will close in around it even if the axis is not affected.
- inverted
Whether to invert the axes so that the x axis is vertical and y axis is horizontal. When true, the x axis is reversed by default. If a bar series is present in the chart, it will be inverted automatically.. . Inverting the chart doesn't have an effect if there are no cartesian series in the chart, or if the chart is polar.
- margin
The margin between the outer edge of the chart and the plot area. The numbers in the array designate top, right, bottom and left respectively. Use the options
marginTop,marginRight,marginBottomandmarginLeftfor shorthand setting of one option. Since version 2.1, the margin is 0 by default. The actual space is dynamically calculated from the offset of axis labels, axis title, title, subtitle and legend in addition to thespacingTop,spacingRight,spacingBottomandspacingLeftoptions.. Defaults to[null].- options3d
Options to render charts in 3 dimensions. This feature requires
highcharts-3d.js, found in the download package or online at code.highcharts.com/highcharts-3d.js.- panKey
Allows setting a key to switch between zooming and panning.
- panning
Allow panning in a chart. Best used with panKey to combine zooming and panning.
- pinchType
Equivalent to zoomType, but for multitouch gestures only. By default, the
pinchTypeis the same as thezoomTypesetting. However, pinching can be enabled separately in some cases, for example in stock charts where a mouse drag pans the chart, while pinching is enabled.- plotBackgroundColor
The background color or gradient for the plot area.
- plotBackgroundImage
The URL for an image to use as the plot background. To set an image as the background for the entire chart, set a CSS background image to the container element. Note that for the image to be applied to exported charts, its URL needs to be accessible by the export server.
- plotBorderColor
The color of the inner chart or plot area border.
- plotBorderWidth
The pixel width of the plot area border.
- plotShadow
Whether to apply a drop shadow to the plot area. Requires that plotBackgroundColor be set. Since 2.3 the shadow can be an object configuration containing
color,offsetX,offsetY,opacityandwidth.- polar
When true, cartesian charts like line, spline, area and column are transformed into the polar coordinate system. Requires
highcharts-more.js.- reflow
Whether to reflow the chart to fit the width of the container div on resizing the window.
- renderTo
The HTML element where the chart will be rendered. If it is a string, the element by that id is used. The HTML element can also be passed by direct reference.
- resetZoomButton
The button that appears after a selection zoom, allowing the user to reset zoom.
- selectionMarkerFill
The background color of the marker square when selecting (zooming in on) an area of the chart.
- shadow
Whether to apply a drop shadow to the outer chart area. Requires that . backgroundColor be set. Since 2.3 the shadow can be an object configuration containing
color,offsetX,offsetY,opacityandwidth.- showAxes
Whether to show the axes initially. This only applies to empty charts where series are added dynamically, as axes are automatically added to cartesian series.
- spacing
The distance between the outer edge of the chart and the content, like title, legend, axis title or labels. The numbers in the array designate top, right, bottom and left respectively. Use the options spacingTop, spacingRight, spacingBottom and spacingLeft options for shorthand setting of one option.
- style
Additional CSS styles to apply inline to the container
div. Note that since the default font styles are applied in the renderer, it is ignorant of the individual chart options and must be set globally. Defaults to:.style: {. fontFamily: '"Lucida Grande", "Lucida Sans Unicode", Verdana, Arial, Helvetica, sans-serif', // default font. fontSize: '12px'. }- typeDescription
A text description of the chart type. If the Accessibility module is loaded, this will be included in the description of the chart in the screen reader information region.
- width
An explicit width for the chart. By default (when
null) the width is calculated from the offset width of the containing element.- zoomType
Decides in what dimensions the user can zoom by dragging the mouse. Can be one of
x,yorxy.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
- object ZoomType