Horizontal Bar Composable
typealias HorizontalBarComposable<E> = @Composable BarScope.(series: Int, index: Int, value: E) -> Unit
Defines a Composable function used to emit a horizontal bar. The parameter series is the chart data series index. The parameter index is the element index within the series. The parameter value is the value of the element.