deephaven.plot.font

This module implements the Font class that can be used to set the fonts on a plot.

class Font(family='Arial', style=FontStyle.PLAIN, size=8)[source]

Bases: JObjectWrapper

A specific font, defined in terms of family, style, and size.

Creates a Font object.

Parameters:
  • family (str) – the font family, defaults to ‘Arial’

  • style (FontStyle) – the font style, defaults to FontStyle.PLAIN

  • size (int) – the point size of the Font, defaults to 8

j_object_type

alias of Font

class FontStyle(value)[source]

Bases: Enum

An enum of predefined font styles.

BOLD = io.deephaven.plot.Font$FontStyle(objectRef=0x559ec4975a1a)

Bold text

BOLD_ITALIC = io.deephaven.plot.Font$FontStyle(objectRef=0x559ec4975a2a)

Bold and italic text

ITALIC = io.deephaven.plot.Font$FontStyle(objectRef=0x559ec4975a22)

Italic text

PLAIN = io.deephaven.plot.Font$FontStyle(objectRef=0x559ec4975a12)

Plain text.

font_family_names()[source]

A list of supported font family names.