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

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

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

import js.extras.JsEnum;

/**
 * Can be one of arc, callout, circle, diamond, square, triangle,
 * triangle-down. Symbols are used internally for point markers, button and
 * label borders and backgrounds, or custom shapes. Extendable by adding to
 * SVGRenderer#symbols.
 *
 */
public abstract class SymbolKey extends JsEnum {
  public static final SymbolKey ARC = JsEnum.of("arc");

  public static final SymbolKey CALLOUT = JsEnum.of("callout");

  public static final SymbolKey CIRCLE = JsEnum.of("circle");

  public static final SymbolKey DIAMOND = JsEnum.of("diamond");

  public static final SymbolKey SQUARE = JsEnum.of("square");

  public static final SymbolKey TRIANGLE = JsEnum.of("triangle");

  public static final SymbolKey TRIANGLE_DOWN = JsEnum.of("triangle-down");
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy