BarPlot.opCall

Create a BarPlot. centers and heights must be input ranges with elements implicitly convertible to double. width determines the width of each bar relative to the X-axis scale and must be greater than 0.

  1. BarPlot opCall(R1 centers, R2 heights, double width)
    class BarPlot
    static
    opCall
    (
    R1
    R2
    )
    (
    ,,
    double width
    )
    if (
    isInputRange!R1 &&
    is(ElementType!R1 : double)
    &&
    isInputRange!R2
    &&
    is(ElementType!R2 : double)
    )
  2. BarPlot opCall(R1 centers, R2 heights, double width, R3 lowerErrors, R4 upperErrors)

Meta