Questions tagged [stacked]
377 questions
24
votes
5 answers
How to prevent my stacked series from being in reverse order?
I tried an example of stacked series on JSFiddle but according to me, series are reversed when stacked:
$(function () {
$('#container').highcharts({
chart: {
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar',…

keskispas
- 255
- 1
- 3
- 5
19
votes
1 answer
ggplot Error: Don't know how to automatically pick scale for object of type function
I plotted a stacked bar graph in R using ggplot2 package,
data<-read.table("K.txt",header=TRUE, sep="\t")
> data
Sample P1 P2 P3 P4
1 G1 0.02 0.01 0.03 0.95
2 G2 0.01 0.01 0.02 0.97
3 G3 0.01 0.01 0.02 0.97
4 G4 0.01 0.01…

ramesh
- 1,187
- 7
- 19
- 42
19
votes
4 answers
stacked column chart for two data sets - Google Charts
I'm generating some Google Charts and I'm stuck here. Google allows you to have your columns stacked. But it's either limited or I can't configure it to work. Taken from Google, here is an example showing number of cups of coffee produced in each…

mavili
- 3,385
- 4
- 30
- 46
15
votes
3 answers
different colors for each bar in stacked bar graph - base graphics
I want to plot a stacked bar graph like the one attached, but I want the colors to vary between the categories aa, bb and cc. Specifically, I want the grey blocks in bb to be red and the grey blocks in cc to be green. The following code serves as a…

Martin
- 163
- 1
- 5
13
votes
3 answers
How to stack/overlap more than 2 icons in Font Awesome?
How to stack/overlap more than 2 icons in Font Awesome ?
I have managed to stack/overlap 2 icons like this.
user1642018
12
votes
2 answers
Combine two Font Awesome icons
I'm trying to combine two Font Awesome icons, to create a stack. I'm trying to merge fa-calendar and fa-clock-o icons. This because, I need an icon for date-time.
So, in order to combine them, I tried this:
HTML

SSS
- 703
- 4
- 11
- 23
10
votes
2 answers
graphql_flutter Error: The non-abstract class 'GraphQLWebSocketChannel' is missing implementations
I am trying to use graphql_flutter (https://pub.dev/packages/graphql_flutter) for my MVVM architecture. (https://stacked.filledstacks.com/docs/getting-started/overview) I got this error below from the package graphql_flutter when I try to run my…

alexa tang
- 115
- 1
- 6
10
votes
2 answers
ggplot2 geom_bar position failure
I am using the ..count.. transformation in geom_bar and get the warning
position_stack requires non-overlapping x intervals when some of my categories have few counts.
This is best explained using some mock data (my data involves direction and…

stuttungr
- 399
- 1
- 4
- 12
10
votes
3 answers
How to use Jqplot to show two groups of differently colored bars in the same stacked bar chart
I want to make a bar chart with two sets of stacked bars which are grouped together to compare the two groups of stacked bars. This should be displayed in the following manner:
I have gone through this link
But it didn't help me plot something like…

Anish Nair
- 3,238
- 29
- 41
9
votes
4 answers
How to show a column with the value Zero in Column chart in Highcharts?
Which I am passing to:
series: [{
name: 'Fixed bugs',
data: fixed,
pointWidth: 40
}, {
name: 'Assigned Bugs',
…

SoftwareNerd
- 1,875
- 8
- 29
- 58
7
votes
1 answer
making a stacked barchart in pandas
I would like to create a stacked bar plot from the following dataframe:
VALUE COUNT RECL_LCC RECL_PI
0 1 15686114 3 1
1 2 27537963 1 1
2 3 23448904 1 2
3 4 1213184 …

user308827
- 21,227
- 87
- 254
- 417
7
votes
3 answers
Show value within the bar - jQuery plot horizontal stacked bar chart
I would like to show the value within the bar on the flot bar chart (horizontal and stacked), something like this :
|-------------------------------------------
| 5 | 1 …

Shad Gagnon
- 475
- 1
- 7
- 20
6
votes
1 answer
SQLMAP - how to insert into a database if stacked queries are not possible on a MYSQL server?
Pulling database tables and columns works fine using SQLMAP, but as I try to execute an INSERT statement I get the following error:
query:
sqlmap -u "http://www.example.com/details.php?item_id=327" -D main_db -T orders --columns --sql-query \…

Edmond Tamas
- 3,148
- 9
- 44
- 89
6
votes
1 answer
Google Charts stacked columns with different annotations for each piece of the column
I hope you can help me with this:
I have a chart of stacked columns, all of them with two values to stack in each column. I have successfully created the chart BUT I need to add an annotation for each piece of each column (I don't know the proper…

user2888319
- 63
- 1
- 1
- 3
6
votes
3 answers
Python plot - stacked image slices
I have a series of basic 2D images (3 for simplicity for now) and these are related to each other, analogous to frames from a movie:
Within python how may I stack these slices on top of each other, as in image1->image2->image-3? I'm using pylab to…

Harry Lime
- 2,167
- 8
- 31
- 53