All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.PlotArearangeStatesHoverOptions Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import java.lang.String;
import javax.annotation.Nullable;
import js.lang.Any;
import js.lang.Unknown;
import org.teavm.jso.JSProperty;

/**
 * (Highcharts, Highstock) Options for the hovered series. These settings
 * override the normal state options when a series is moused over or touched.
 *
 * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover
 * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover
 *
 */
public interface PlotArearangeStatesHoverOptions extends Any {
  /**
   * (Highcharts) Animation setting for hovering the graph in line-type
   * series.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.animation
   *
   * @implspec animation?: (boolean|AnimationOptionsObject|PlotArearangeStatesHoverAnimationOptions);
   *
   */
  @JSProperty("animation")
  @Nullable
  Unknown getAnimation();

  /**
   * (Highcharts) Animation setting for hovering the graph in line-type
   * series.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.animation
   *
   * @implspec animation?: (boolean|AnimationOptionsObject|PlotArearangeStatesHoverAnimationOptions);
   *
   */
  @JSProperty("animation")
  void setAnimation(boolean value);

  /**
   * (Highcharts) Animation setting for hovering the graph in line-type
   * series.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.animation
   *
   * @implspec animation?: (boolean|AnimationOptionsObject|PlotArearangeStatesHoverAnimationOptions);
   *
   */
  @JSProperty("animation")
  void setAnimation(PlotArearangeStatesHoverAnimationOptions value);

  /**
   * (Highcharts) Animation setting for hovering the graph in line-type
   * series.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.animation
   *
   * @implspec animation?: (boolean|AnimationOptionsObject|PlotArearangeStatesHoverAnimationOptions);
   *
   */
  @JSProperty("animation")
  void setAnimation(AnimationOptionsObject value);

  /**
   * (Highmaps) The border color of the point in this state.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.borderColor
   *
   * @implspec borderColor?: ColorString;
   *
   */
  @JSProperty("borderColor")
  @Nullable
  String getBorderColor();

  /**
   * (Highmaps) The border color of the point in this state.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.borderColor
   *
   * @implspec borderColor?: ColorString;
   *
   */
  @JSProperty("borderColor")
  void setBorderColor(String value);

  /**
   * (Highmaps) The border width of the point in this state
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.borderWidth
   *
   * @implspec borderWidth?: number;
   *
   */
  @JSProperty("borderWidth")
  double getBorderWidth();

  /**
   * (Highmaps) The border width of the point in this state
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.borderWidth
   *
   * @implspec borderWidth?: number;
   *
   */
  @JSProperty("borderWidth")
  void setBorderWidth(double value);

  /**
   * (Highmaps) The relative brightness of the point when hovered, relative to
   * the normal point color.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.brightness
   *
   * @implspec brightness?: number;
   *
   */
  @JSProperty("brightness")
  double getBrightness();

  /**
   * (Highmaps) The relative brightness of the point when hovered, relative to
   * the normal point color.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.brightness
   *
   * @implspec brightness?: number;
   *
   */
  @JSProperty("brightness")
  void setBrightness(double value);

  /**
   * (Highmaps) The color of the shape in this state.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  @Nullable
  Unknown getColor();

  /**
   * (Highmaps) The color of the shape in this state.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(GradientColorObject value);

  /**
   * (Highmaps) The color of the shape in this state.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(String value);

  /**
   * (Highmaps) The color of the shape in this state.
   *
   * @see https://api.highcharts.com/highmaps/plotOptions.arearange.states.hover.color
   *
   * @implspec color?: (ColorString|GradientColorObject|object);
   *
   */
  @JSProperty("color")
  void setColor(Any value);

  /**
   * (Highcharts, Highstock) Enable separate styles for the hovered series to
   * visualize that the user hovers either the series itself or the legend. .
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.enabled
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.enabled
   *
   * @implspec enabled?: boolean;
   *
   */
  @JSProperty("enabled")
  boolean getEnabled();

  /**
   * (Highcharts, Highstock) Enable separate styles for the hovered series to
   * visualize that the user hovers either the series itself or the legend. .
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.enabled
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.enabled
   *
   * @implspec enabled?: boolean;
   *
   */
  @JSProperty("enabled")
  void setEnabled(boolean value);

  /**
   * (Highcharts, Highstock) Options for the halo appearing around the hovered
   * point in line- type series as well as outside the hovered slice in pie
   * charts. By default the halo is filled by the current point or series
   * color with an opacity of 0.25. The halo can be disabled by setting the
   * halo option to false.
   *
   * In styled mode, the halo is styled with the .highcharts-halo class,
   * with colors inherited from .highcharts-color-{n}.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.halo
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.halo
   *
   * @implspec halo?: PlotArearangeStatesHoverHaloOptions;
   *
   */
  @JSProperty("halo")
  @Nullable
  PlotArearangeStatesHoverHaloOptions getHalo();

  /**
   * (Highcharts, Highstock) Options for the halo appearing around the hovered
   * point in line- type series as well as outside the hovered slice in pie
   * charts. By default the halo is filled by the current point or series
   * color with an opacity of 0.25. The halo can be disabled by setting the
   * halo option to false.
   *
   * In styled mode, the halo is styled with the .highcharts-halo class,
   * with colors inherited from .highcharts-color-{n}.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.halo
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.halo
   *
   * @implspec halo?: PlotArearangeStatesHoverHaloOptions;
   *
   */
  @JSProperty("halo")
  void setHalo(PlotArearangeStatesHoverHaloOptions value);

  /**
   * (Highcharts, Highstock) Pixel width of the graph line. By default this
   * property is undefined, and the lineWidthPlus property dictates how much
   * to increase the linewidth from normal state.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.lineWidth
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.lineWidth
   *
   * @implspec lineWidth?: number;
   *
   */
  @JSProperty("lineWidth")
  double getLineWidth();

  /**
   * (Highcharts, Highstock) Pixel width of the graph line. By default this
   * property is undefined, and the lineWidthPlus property dictates how much
   * to increase the linewidth from normal state.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.lineWidth
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.lineWidth
   *
   * @implspec lineWidth?: number;
   *
   */
  @JSProperty("lineWidth")
  void setLineWidth(double value);

  /**
   * (Highcharts, Highstock) The additional line width for the graph of a
   * hovered series.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.lineWidthPlus
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.lineWidthPlus
   *
   * @implspec lineWidthPlus?: number;
   *
   */
  @JSProperty("lineWidthPlus")
  double getLineWidthPlus();

  /**
   * (Highcharts, Highstock) The additional line width for the graph of a
   * hovered series.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.lineWidthPlus
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.lineWidthPlus
   *
   * @implspec lineWidthPlus?: number;
   *
   */
  @JSProperty("lineWidthPlus")
  void setLineWidthPlus(double value);

  /**
   * (Highcharts, Highstock) In Highcharts 1.0, the appearance of all markers
   * belonging to the hovered series. For settings on the hover state of the
   * individual point, see marker.states.hover.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.marker
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.marker
   *
   * @implspec marker?: PlotArearangeStatesHoverMarkerOptions;
   *
   */
  @JSProperty("marker")
  @Nullable
  PlotArearangeStatesHoverMarkerOptions getMarker();

  /**
   * (Highcharts, Highstock) In Highcharts 1.0, the appearance of all markers
   * belonging to the hovered series. For settings on the hover state of the
   * individual point, see marker.states.hover.
   *
   * @see https://api.highcharts.com/highcharts/plotOptions.arearange.states.hover.marker
   * @see https://api.highcharts.com/highstock/plotOptions.arearange.states.hover.marker
   *
   * @implspec marker?: PlotArearangeStatesHoverMarkerOptions;
   *
   */
  @JSProperty("marker")
  void setMarker(PlotArearangeStatesHoverMarkerOptions value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy