I recently imported a Bar Chart component from Highcharts, but it is being displayed horizontally. I would like to convert it into a vertical chart instead. Can someone please assist me in achieving this by passing the necessary props?
<template v-slot="{ measures, resultSet, loading}">
<bar-chart type:"vertical" :data="transformData(resultSet)"></bar-chart>
</template>
My issue is that the current Bar Chart is shown as horizontal, and I would prefer it to be displayed vertically as a bar chart.