private static additems()

in src/visual.ts [176:270]


    private static additems(anyRangeIsDefined,
        bulletModel,
        idx,
        firstScale,
        secondScale,
        firstFillColor,
        firstColor,
        thirdScale,
        secondFillColor,
        secondColor,
        fourthScale,
        thirdFillColor,
        thirdColor,
        fifthScale,
        fourthFillColor,
        fourthColor,
        lastScale,
        lastFillColor,
        lastColor,
        maxStrokeWidthBars,
        toolTipItems,
        highlight,
        selectionIdBuilder) {
        if (anyRangeIsDefined) {
          BulletChart.addItemToBarArray(
            bulletModel.barRects,
            idx,
            firstScale,
            secondScale,
            firstFillColor,
            firstColor,
            maxStrokeWidthBars,
            null,
            toolTipItems,
            selectionIdBuilder(),
            highlight
          );

          BulletChart.addItemToBarArray(
            bulletModel.barRects,
            idx,
            secondScale,
            thirdScale,
            secondFillColor,
            secondColor,
            maxStrokeWidthBars,
            null,
            toolTipItems,
            selectionIdBuilder(),
            highlight
          );

          BulletChart.addItemToBarArray(
            bulletModel.barRects,
            idx,
            thirdScale,
            fourthScale,
            thirdFillColor,
            thirdColor,
            maxStrokeWidthBars,
            null,
            toolTipItems,
            selectionIdBuilder(),
            highlight
          );

          BulletChart.addItemToBarArray(
            bulletModel.barRects,
            idx,
            fourthScale,
            fifthScale,
            fourthFillColor,
            fourthColor,
            maxStrokeWidthBars,
            null,
            toolTipItems,
            selectionIdBuilder(),
            highlight
          );

          BulletChart.addItemToBarArray(
            bulletModel.barRects,
            idx,
            fifthScale,
            lastScale,
            lastFillColor,
            lastColor,
            maxStrokeWidthBars,
            null,
            toolTipItems,
            selectionIdBuilder(),
            highlight
          );
        }
    }