options for configuring dimension displays, including line visibility and text options

interface DimensionOptions {
    closingLineCssClass?: string;
    closingLineLength?: number;
    fontSize?: string;
    groupCssClass?: string;
    lineCssClass?: string;
    orientation?: DimensionOrientation;
    showBaseLine?: boolean;
    showEndLine?: boolean;
    showStartLine?: boolean;
    showText?: boolean;
    textCssClass?: string;
    textOffset?: number;
    textOrientation?: DimensionTextOrientation;
    unit?: string;
}

Properties

closingLineCssClass?: string
closingLineLength?: number
fontSize?: string
groupCssClass?: string
lineCssClass?: string
orientation?: DimensionOrientation
showBaseLine?: boolean
showEndLine?: boolean
showStartLine?: boolean
showText?: boolean
textCssClass?: string
textOffset?: number
textOrientation?: DimensionTextOrientation
unit?: string