Glypht
  • Documentation
  • Discussions
  • GitHub
Navigation
  • Documentation
    • @glypht/bundler-utils
      • NodeType
      • CSSSpan
      • CSSOutput
      • FeatureMetadata
      • FamilyInfo
      • SubsetAxisSetting
      • ExportedFont
      • CharacterSetSettings
      • FamilySubsetSettings
      • FamilySettings
      • ExportFontsSettings
      • featureMetadata
      • sortFontsIntoFamilies
      • exportedFontsToCSS
      • exportFonts
      • parseUnicodeRanges
      • parseRanges
      • formatUnicodeRanges
    • @glypht/cli
      • GlyphtConfig
      • build
    • @glypht/core
      • AxisValueFormat
      • AxisValueFlags
      • WoffCompressionContext
      • GlyphtContext
      • CompressOptions
      • DecompressOptions
      • LoadFontsOptions
      • AxisInfo
      • SubsetAxisInfo
      • StyleValue
      • FeatureInfo
      • NamedInstance
      • StyleKey
      • StyleValues
      • SfntVersion
      • DesignAxisRecord
      • AxisValueSingle
      • AxisValueRange
      • AxisValueLinked
      • AxisValueMultiple
      • AxisValue
      • StyleAttributes
      • SubsettedFont
      • SubsetInfo
      • SubsetAxisSetting
      • SubsetSettings
      • FontRef
      • SubsetName
      • SUBSET_NAMES
    • Comparison with other tools
    • Web app

DesignAxisRecord

Design axis record from the STAT table.

type DesignAxisRecord = {
    tag: string;
    name: string | null;
    ordering: number;
}
  • Defined in font-types.ts:94
Index

Properties

tag name ordering

Properties

tag

tag: string

A tag designating the axis (e.g. "wght", "opsz").

  • Defined in font-types.ts:96

name

name: string | null

The axis' name (e.g. "Weight", "Optical Size").

  • Defined in font-types.ts:98

ordering

ordering: number

The order of this axis relative to others, e.g. in a face name (for example, if "opsz" is 0 and "wght" is 1, then a face's name might end in "Display Bold").

  • Defined in font-types.ts:103