-
Pretty easy fix here. On the column chart make these two adjustments:
```svelte
$: columnHeight = d => {
return Math.abs($yGet(d) - $yScale(0) );
};
```
and
```
y="{Math.min($ySca…
-
I finally realized this was a bug, probably low priority but wow it took me sometime to figure out. I can't order my stacked bar chart when my x axis is an integer (like Year), but i can order it fin…
-
is it possible to make stacked bar graph will pill shaped bar.
-
### Description
If you imagine a stacked bar chart where we have `number of bidders `as the metric, and `first auction they bid in` as the group, we would like to order the stacking by `auction sta…
-
It would be nice to be able to add totals as a data label to stacked bar charts and to their corresponding tool tips. Something like [this](http://www.highcharts.com/demo/column-stacked).
This might …
-
It would be great if the bar chart component had an option to stack values.
-
I have been trying to find a way to be clever and use holoviews to make clustered and grouped/clustered columns. I have not found a way that the code accepts. Example of the kind of chart that I'm t…
-
Currently the Performance page shows parallel bar charts for Performance.
It would be much more useful if these were instead a Stacked Area Chart. That way it's easier to see how much time is be…
-
Hi! Thank you for sharing your work with everyone in this document! I hope it is ok to ask in this way... I am trying to follow your instructions to create a stacked bar chart as in section 19.4. I no…
-
To visually show something like:
Event Type = alert
Split by = host
over time. Each bar would be a stack of smaller bars, each smaller bar representing a hosts number of events of type alert that ma…