Describe your question
Is it possible to create stacked horizontal bar charts, and if so how can I do it?
Which Blazor project type is your question related to?
Server-Side
Which charts is this question related to?
Bar Charts
JavaScript equivalent
options: {
indexAxis: 'y',
scales: {
x: {
stacked: true
},
y: {
stacked: true
}
}
}
Additional context
Add any additional context, screenshots or code about the question here.