private get reverse()

in src/visual.ts [136:143]


    private get reverse(): boolean {
        switch (this.settings && this.settings.orientation.orientation) {
            case BulletChartOrientation.HorizontalRight:
            case BulletChartOrientation.VerticalBottom:
                return true;
        }
        return false;
    }