Questions tagged [stacked]
377 questions
2
votes
0 answers
D3.js zoomable horizontal stacked bar
I'm trying apply brush to my stacked bar chart.
http://jsfiddle.net/seurolandolero/bzwhb7mw/
function brushed() {
var e = brush.extent();
var e0 = e[0];
var e1 = e[1];
if (e0==e1) {
//alert("No brush selected");
}…

Rolland
- 679
- 5
- 10
2
votes
2 answers
Stacked Bar Chart with percentage composition inside the Bar and total above the Bar in JFreeChart
I am trying to create a Stacked Bar Chart. My requirement is I need percentage composition inside the bar and total count on top of the Bar. Please suggest solutions.
My Requirement:
Sample :…

SKR
- 779
- 4
- 17
- 31
2
votes
1 answer
Labels per category and per bar for clustered stacked histogram
Below is the gnuplot code that creates clustered stacked histogram.
set terminal postscript eps enhanced 14
set datafile separator ";"
set output 'stacked_boxes.eps'
set auto x
set yrange [0:30]
set xtics 1
set style fill solid border…

Kabira K
- 1,916
- 2
- 22
- 38
2
votes
1 answer
R ggplot2 stacked bar plot, x as.factor(Time), fill = c(Mean.E, Mean.T, Mean.P)
I am trying to create a stacked bar plot but having no luck. Unfortunately I am unable to figure out how to post the dataframe, and am a new user so cannot post images. I have given the layout of the data below. I wish to plot fauceted graphs by…

user3466227
- 31
- 1
2
votes
1 answer
Single error bar on stacked bar plot ggplot
I have been trying without any success to draw a stacked bar plot with a single error bar on top of each individual bar and not for each sections within bars. I can manage to draw all error bars for each section but did not find a solution to draw a…

GQU
- 35
- 4
2
votes
1 answer
gnuplot complex stacked plot
I am trying to break my gnuplot down into a stacked plot for better readability. I'd like the horsepower and torque data to be on the same plot and the other data to be separately displayed on stacked plots below this--all lined up by the same X…

Bala Sambandam
- 83
- 5
2
votes
1 answer
How do I change the style of the Android Actionbar Stackedbar's tab at runtime?
How can I change the Android StackedActionBar's Tab text color, Tab divider color, and selected navigation Tab selector color dynamically at runtime using java? I have not been able to find solutions for this without having to alter my XML each…

anonymous developer
- 398
- 3
- 17
2
votes
1 answer
ggplot2 stacked barplots, formatting, and grids
In the data that I am attempting to plot, each sample belongs in one of several groups, that will be plotted on their own grids. I am plotting stacked bar plots for each sample that will be ordered in increasing number of sequences, which is an id…

Nik
- 23
- 3
2
votes
0 answers
D3 Stacked Bar Chart outer padding
I've been working on adapting the stacked bar chart example (http://bl.ocks.org/mbostock/1134768). The problem I'm having is that there's
always outerpadding. The API lists the outer padding as a 3rd option, but omitting
it or setting it to 0 still…

AeroSpartacus
- 121
- 2
- 8
2
votes
0 answers
Highcharts: stacked column with grouped categories
I'm trying to do a chart with stacked columns but for each column having different entries. I will explain myself better.
I would like to use the demo of Highcharts:
http://www.highcharts.com/demo/column-stacked
But:
In the demo, the series are…

user2401403
- 21
- 1
- 2
2
votes
2 answers
ng-Grid columns stacked or not displaying properly
I am trying to display sample data in a ng-grid via AngularJS. Everything looks correct to me. If I pass 'ngGrid' in the module definition within my local project the columns are getting stacked one below the other. I tried doing this in plunker ,…

user2373174
- 21
- 1
- 2
2
votes
1 answer
How to plot stacked proportional graph?
I have a data frame:
x <- data.frame(id=letters[1:3],val0=1:3,val1=4:6,val2=7:9)
id val0 val1 val2
1 a 1 4 7
2 b 2 5 8
3 c 3 6 9
I want to plot a stacked bar plot that shows the percentage of each columns. So, each…

Rachit Agrawal
- 3,203
- 10
- 32
- 56
2
votes
1 answer
Stacked dot plot using ggplot2
I am interested in making a stacked dotplot like the one in link below in ggplot2.
The following was made using dotPlot function in BHH2 package but does not have the coloring and faceting ease of ggplot2.

Vivek Kumar
- 283
- 1
- 3
- 8
2
votes
2 answers
HighCharts - Remove space between series on stacked bar
I have a HighCharts chart to display some information. I have stacked information for each day. Each entry is unique -> I cannot use a single series.
The problem is: between two days, there's a huge space and I have no idea how to decrease or remove…

DerAbt
- 337
- 1
- 5
- 14
2
votes
1 answer
How to assign picture to stacked bar plot
I am working on stacked bar plot but i need to assign image here hand on particular stack.
How can i do this in R.
DF = data.frame(names = c("tomato", "potato", "cabbage",
"sukuma-wiki", "terere"),
…

Manish
- 3,341
- 15
- 52
- 87