interface ProfileFormatter {
    xhover: ((arg0, arg1) => string);
    xtick: ((arg0, arg1) => string | number);
    yhover: ((arg0, arg1) => string);
    ytick: ((arg0, arg1) => string | number);
}

Properties

xhover: ((arg0, arg1) => string)

Type declaration

    • (arg0, arg1): string
    • Format the xhover distance.

      Parameters

      • arg0: number
      • arg1: string

      Returns string

xtick: ((arg0, arg1) => string | number)

Type declaration

    • (arg0, arg1): string | number
    • Format the xtick, for graduating the x axis.

      Parameters

      • arg0: number
      • arg1: string

      Returns string | number

yhover: ((arg0, arg1) => string)

Type declaration

    • (arg0, arg1): string
    • Format the yhover elevation.

      Parameters

      • arg0: number
      • arg1: string

      Returns string

ytick: ((arg0, arg1) => string | number)

Type declaration

    • (arg0, arg1): string | number
    • Format the ytick, for graduating the y axis.

      Parameters

      • arg0: number
      • arg1: string

      Returns string | number

Generated using TypeDoc