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

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

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

import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * The font metrics.
 *
 */
public interface FontMetricsObject extends Any {
  /**
   * The baseline relative to the top of the box.
   *
   * @implspec b: number;
   *
   */
  @JSProperty("b")
  double getB();

  /**
   * The baseline relative to the top of the box.
   *
   * @implspec b: number;
   *
   */
  @JSProperty("b")
  void setB(double value);

  /**
   * The font size.
   *
   * @implspec f: number;
   *
   */
  @JSProperty("f")
  double getF();

  /**
   * The font size.
   *
   * @implspec f: number;
   *
   */
  @JSProperty("f")
  void setF(double value);

  /**
   * The line height.
   *
   * @implspec h: number;
   *
   */
  @JSProperty("h")
  double getH();

  /**
   * The line height.
   *
   * @implspec h: number;
   *
   */
  @JSProperty("h")
  void setH(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy