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)

Format the xhover distance.

Type declaration

    • (arg0, arg1): string
    • Parameters

      • arg0: number
      • arg1: string

      Returns string

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

Format the xtick, for graduating the x axis.

Type declaration

    • (arg0, arg1): string | number
    • Parameters

      • arg0: number
      • arg1: string

      Returns string | number

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

Format the yhover elevation.

Type declaration

    • (arg0, arg1): string
    • Parameters

      • arg0: number
      • arg1: string

      Returns string

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

Format the ytick, for graduating the y axis.

Type declaration

    • (arg0, arg1): string | number
    • Parameters

      • arg0: number
      • arg1: string

      Returns string | number