Questions tagged [stackedbarseries]
127 questions
0
votes
1 answer
SSRS: Range Bar Chart not displaying repeated status based on Date Range
I have a query that gives me the daily status of an item based on desired date range (parameters). This status will vary and can repeat. For example, it can chronologically be: Operational, Repair, Inspection, Operational, Inspection. As you can…

JustPeachy
- 7
- 5
0
votes
0 answers
Colors of stacked bar_plots identical across different plots
I'm making a number of different plots from the same data and each subset is a bit different, with different number of stacks (i.e: one plot has 12 stacks, and another might have 21 stacks) so each has a different legend.
I would like to make each…

Samaj Oruel
- 17
- 1
- 5
0
votes
1 answer
stacked barplots: spacing within bars
I have tried finding the questions with similar questions but was not fruitful. If this question has already been requested, please guide me there.
How to add space within each bar of the stacked barplots?
df <- data.frame(Type…

Prradep
- 5,506
- 5
- 43
- 84
0
votes
1 answer
Custom x-label for ordered stacked bar graph in R ggplot2
I am trying to create a custom label for an ordered stacked bar graph in ggplot2.
I have six different animals in my garden - a beaver, an elephant, a kangaroo, a mouse, a dragon and a chihuahua.
I asked them each to sing to me on two occasions,…

Ian Rickard
- 11
- 3
0
votes
3 answers
Add extra value to ggplot barplot
I have the following data:
Sp Type Val1 Val2
A One 200 50
A Two 100 10
C One 300 150
C Two 200 10
I did the following to get stacked barplot:
ggplot() +
geom_bar(data=test, aes(y = Val1, x = Sp, fill…

Arun
- 649
- 8
- 24
0
votes
1 answer
Chart.js multiple series with same scale
I have a stacked bar chart with an unstacked line chart combo chart using Chart.js. I need the stacked bars and unstacked lines to appear on the same axis. It doesn't appear that I can do this, so I put them on different axes so that one could be…

Scrappy Doo
- 3
- 1
- 6
0
votes
1 answer
D3.js Stacked Bar Chart Selects
I am trying to come to grips with some D3 concepts but feel as though there are some fundamentals gaps in my knowledge. It seems to do with how the D3 stack() function works.
I am trying to understand why the following two code snippets are not…

Sabur Aziz
- 236
- 1
- 2
- 9
0
votes
1 answer
Bar Chart with issue (Forms MC Chart)
I want to draw 52 Bar series in a Bar chart to represent weeks in a year. However, there seems to be an issue with the chart, as you can see in the picture below:
I have 2 series that I draw with label, x value,y value.…

Georgiana M
- 323
- 4
- 20
0
votes
1 answer
D3.js animating update of stacked bar graph
I am trying to update a stacked bar chart with transitions as the underlying data is changed. It calls the same "render" function each time and works well when no transitions are involved. However, I would like to animate the changes in values,…

Sabur Aziz
- 236
- 1
- 2
- 9
0
votes
1 answer
Infragistics data chart C# WPF highlight part of a series
I have a listview box which contains my data, it is loaded when selected into a infragistics data chart, it is all loaded into a single stacked bar series. What I now need to be able to do is click one segment of the bar series and be able to…

trl_sp
- 1
- 1
0
votes
1 answer
Stacked bar plot using javascript
Hi all I am trying to plot stacked bar using canvasJS for following nested list:
pepidstat=[[[2016, 61, 'Feb'], [2011, 367, 'Feb'], [2013, 83, 'Feb'], [2014, 89, 'Feb'], [2015, 106, 'Feb']], [[2016, 43, 'Jan'], [2011, 128, 'Jan'], [2013, 150,…

Paul85
- 647
- 1
- 11
- 27
0
votes
2 answers
java,BarSeries:How to Display the Column Chart horizontal?
I want to Display a Column Chart horizontal.I mean I want to change this:
to this:
but I don't know which properties or function can achieve it.Hope someone could show me the specific code.Thanks!!!!

lixuan deng
- 302
- 3
- 14
0
votes
1 answer
How to create a stacked bar in R?
I am an R beginner. What's the best way to create a stacked bar graph (summing to 100%)?
Below is my date sample. I have two variables, would like to use Var 1 for x axis, Var 2 for y axis, and Freq for data.
Var1 …
0
votes
1 answer
Stacked Histogram in R ggplot with 100+ qualitative colors
The data frame has many continuous numeric columns (e.g. gr) and a sample identifier - wellseq. There are many rows of data for each wellseq. In a data frame - there are 94 distinct levels of wellseq in 10227 rows. Header lines from data frame are:
…

Srikanth G
- 91
- 2
- 9
0
votes
1 answer
c3.js generate a stacked bar from JSON payload
I am attempting to generate a stacked bar chart with c3 when using a JSON payload (code below). However, when I group the data, instead of having a stacking behavior, they overlay instead. If I use the column structure, I get the intended behavior,…

cjr
- 520
- 2
- 7
- 22