in src/visual.ts [145:152]
private get vertical(): boolean {
switch (this.settings && this.settings.orientation.orientation) {
case BulletChartOrientation.VerticalTop:
case BulletChartOrientation.VerticalBottom:
return true;
}
return false;
}