Sets or gets the scrollbar's orientation Possible values: 'horizontal', 'vertical'.
Code examples
Set the orientation property.
let scrollBar = document.querySelector('jqx-scroll-bar');
scrollBar.orientation = 'horizontal';
Get the orientation property.
let scrollBar = document.querySelector('jqx-scroll-bar');
let orientation = scrollBar.orientation;