Questions tagged [stackedbarseries]
127 questions
0
votes
0 answers
Javascript Charting - Stacked Bar-Chart + Tree Chart combined
So I'm working on a project that requires me to graph the cummulative amount of days a certain record has spent in each of it's life cycle stages. The tricky part is, the relationship between parent and child records cause the data to branch out…

Andrew Bettke
- 191
- 1
- 10
0
votes
0 answers
SSRS Stacked bar chart with series spacing and outer axis label rotation
I've got a stacked bar chart with legends, but depending on the data selected, it becomes unreadable because of the space added around the bars and the series and the fact that the outer horizontal axis label won't rotate. I've tried as many things…

user1795131
- 47
- 4
0
votes
1 answer
Creating hyperlink on the highcharts stacked bar chat
var s1 = "{ name : \'Space1\', data :[5, 3, 4, 7] },";
var s2 = "{ name :\'Space2\', data:[5, 4, 7] },";
var s3 = "{ name : \'Space3\', data:[5, 3, 7] }";
var series = s1+s2+s3;
var chartdata = {
chart: {
type: 'column'
…

Netaji Pulaparthi
- 51
- 1
- 7
0
votes
3 answers
How to make yAxis start from a specific time with bar series in highchart?
I want to have bar chart start from a specific time (1.Apr)
So I implemented this in below sample:
(jsFiddle) sample with axis right but can the bar disappear
With the code below
yAxis: {
type: 'datetime',
min:Date.UTC(2010, 3,…

Bruce Chen
- 1
- 2
0
votes
1 answer
SSRS stacked bar chart multiple series, utilizing category groups for different date fields
The source data is a SSAS cube, which contains information about tickets, particularly priority, date opened, and date closed.
Each ticket has a priority and date opened value, though the closed value may be null or another placeholder value…

samb0x
- 185
- 15
0
votes
1 answer
How to center values in stackbar plot and add greek text to legend with ggplot
I have created a stacked-bar plot with 'ggplot' to display my karyotype (molecular) results from a transplant experiment, with each panel representing a location, and the x-axis is the various substrates, while the y-axis is the percentage of each…

Keith W. Larson
- 1,543
- 2
- 19
- 34
0
votes
1 answer
What is the best way to visualize this data?
I have data in the following form:
% (Percentage) of agent_i having their percentage contribution at some time points:
time 1 2 3 4 5 6 7 8 ..... 200
400: 5.2 6.4 0.7 1.56 11.4 ... ... ... …

Prateek
- 41
- 1
- 5
0
votes
1 answer
Stacked bar chart in D3js - bars are not on the correct places
I'm trying to build a stacked bar chart in D3js. I have problems to set properly y and y0 attributes and draw the bars on their right positions. Probably I have a calculation mistake but I cannot find it. This is the link to the example code FIDDLE…

Ils
- 13
- 4
0
votes
1 answer
grouped / stacked bars disappearing on the left and right in ggplot2
Here is what my test data looks like (this is fake data):
Var1 Var2 value
1 A -7 0.7239130
2 C -7 0.8326087
3 G -7 0.7891304
4 U -7 0.8543478
5 A -6 0.7673913
6 C -6 0.8326087
7 G -6 0.7673913
8 U…

biohazard
- 2,017
- 10
- 28
- 41
0
votes
1 answer
Androidplot StackedBar chart Range labels
I have 3 data series on a StackedBar Chart with AndroidPlot.
For example:
Number[] serie1 = new Number[]{1,4,2,5,3};
Number[] serie2 = new Number[]{3,2,8,2,0};
Number[] serie3 = new Number[]{7,1,12,8,2};
In my chart, I have 3 ticks. And for…

Tekno
- 193
- 1
- 1
- 11
0
votes
1 answer
java fx custom selector on charts
I have some StackedBarChart containing various series.
StackedBarChart.Series series1= new StackedBarChart.Series(
FXCollections.observableArrayList(list1));
StackedBarChart.Series…

facewindu
- 705
- 3
- 11
- 31
0
votes
1 answer
Null pointer exception on StackedBarChart
I'm trying to display a StackedBarChart with Java FX (running 1.7.0_45)
I get the following
java.lang.NullPointerException
at javafx.scene.chart.StackedBarChart.getDataItem(StackedBarChart.java:500)
at…

facewindu
- 705
- 3
- 11
- 31
0
votes
0 answers
stacked barplot with data arranged by depth
I'm trying to plot elemental data that is organized by rows. In other words:
Ba …

rod24
- 11
- 2
0
votes
1 answer
Excel - How to order stacks by size inside a bar in a stacked bar chart?
How to order stacks inside a bar in a stacked bar chart by size. I have spend by business unit and region and want to create bars that represent business units and the stacks represent the regions. Now, I would like the stacks to be arranged by the…

Victor
- 23
- 7
0
votes
0 answers
Color gradient and shading based on multiple variables in ggplot2 (r)
I was wondering how to add more advanced levels of color scheming with ggplot2 without having to set it up manually.
Heres a pic of what I have so far:
I would like to make it such that all the data follows a gradient, but each Actinobacteria has…

Nik
- 23
- 3