-
-
Couldn't load subscription status.
- Fork 1.4k
Closed
Labels
Description
https://codepen.io/vsync/pen/XvMPGq
When using horizontal bar chart, with data set such as [10,20,100], the xaxis last label (and tick) are missing. Expected to show the value 100 in the right-most side:
Options:
{
chart: {
height: 380,
width: "100%",
type: "bar"
},
plotOptions: {
bar: {
barHeight: '100%',
horizontal: true // ← "true" flip the axis, "100" is not shown anymore
}
},
series: [
{
name: "Series 1",
data: [10,20,100]
}
]
}When horizontal set to false and the axis flip, the max value is shown as expected & at the current position (although now on the Y axis)
MerApelsin, tanguyvda, ThinkSalat, system-rooking, elite0226 and 1 more
