blessed-components - v1.20.0
    Preparing search index...

    Interface RenderBarChartOptions

    Options accepted by renderBarChart.

    interface RenderBarChartOptions {
        character?: string;
        height?: number;
        items: readonly BarChartItem[];
        max?: number;
        min?: number;
        width: number;
    }
    Index

    Properties

    character?: string

    Filled bar character.

    height?: number

    Maximum rendered height.

    items: readonly BarChartItem[]

    Items in visual order.

    max?: number

    Maximum domain value. Defaults to max item value or 1.

    min?: number

    Minimum domain value.

    width: number

    Width of bar track.