Questions tagged [stacked-area-chart]

A stacked area chart is a type of chart (or graph) that is used to display graphically quantitive data.

A stacked area chart or stacked area graph displays graphically quantitive data. It is based on the line chart. The area between axis and line are commonly emphasized with colors, textures and hatchings.

Stacked area charts are used to represent cumulated totals using numbers or percentages over time.

209 questions
2
votes
1 answer

Trying to create a dynamic Dundas Stackedarea chart

Good afternoon. I try to research and have yet to find anyone that has an example of this, I normally do not ask for help, I just figure it out, but this one is killing me! I am trying to create a stacked area chart dynamically, I already can create…
2
votes
2 answers

geom_area not stacking (ggplot)

Here is the structure of my data: Classes ‘tbl_df’, ‘tbl’ and 'data.frame': 60 obs. of 3 variables: $ year : num 1990 1990 1991 1992 1993 ... $ studyType: Factor w/ 4 levels "meta","observational",..: 2 3 3 1 3 3 3 1 3 3 ... $ N : int…
Brian P
  • 1,496
  • 4
  • 25
  • 38
2
votes
1 answer

How to format the tooltip content in nvd3-angularjs

Im using Stacked area chart of nvd3-angularjs This is my html
user3714598
  • 1,733
  • 5
  • 28
  • 45
2
votes
3 answers

NVD3 Stacked Area Chart

Example of Stacked Area Chart http://nvd3.org/ghpages/stackedArea.html When I click on a series, it expands to all chart area, removing other series. How do I disable this functionality?
Deadly
  • 2,034
  • 6
  • 24
  • 32
2
votes
1 answer

Change chart colors for different values

I want to create temperature chart where I can monitor in real time temperature. import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.chart.NumberAxis; import javafx.scene.chart.StackedAreaChart; import…
Peter Penzov
  • 1,126
  • 134
  • 430
  • 808
2
votes
1 answer

Flot: Stacked line chart bug - points get overlapped

When creating an area chart (stack + fill for line chart), points are overlapped with fill color. I have created an example to demonstrate this bug: http://jsfiddle.net/d3bpD/ Flot chart options: var options = { series: { stack: true }, …
Vilis
  • 1,062
  • 2
  • 12
  • 21
2
votes
0 answers

Stacked Column Chart duplicate x axis

I have the following data in sql that needs to be represented in Stacked Column chart. Name  Type  Amount Paul    T1      100 John   T2      200 John   T3      300 The name represents the X-axis and the Type as Series. The issue I am facing is…
BusyBees
  • 59
  • 6
2
votes
1 answer

Error bars on stacked area graph with ggplot2

I would like to add error bars on a stacked area graph created with ggplot2. My csv file looks like : Day Cat Val Error 0 A 0 0.00 0 B 44.77 1.16 0 C 54.64 0.88 13 A 1.34 0.32 13 B 22.78 0.45 13 C …
2
votes
1 answer

Chart issues with SSRS

I am having a problem with getting a stacked area chart to display the right data in SSRS 2005. On my Y axis, I want a scale from 50% to 100%. On my X axis I have a set of dates formatted in a style that was necessary for the report (so…
1
vote
1 answer

stacked line/area graph in matplotlib

I have a question regarding matplotlib and I already know that what I am doing is not statistically / mathematically correct in a way but I want visualize anyways using stacked line / area graphs. The measurements I have do not use the same x axis…
moin moin
  • 2,263
  • 5
  • 32
  • 51
1
vote
1 answer

How can I define duplicate values on the X-axis of a stacked area chart with Vega?

Is there anyway to define duplicate values on an X-axis in a stacked area chart? I'm trying to create a chart that has an X Axis from 50 down to 0 and back up to 30, like: 50, 40, 30, 20, 10, 0, 5, 10, 15, 20 I'm having issues where the duplicate…
Noble
  • 33
  • 4
1
vote
1 answer

Where is the "Visible" property for Data Labels on an SSRS Stacked Area chart

In an old WordPress posting I found the property dialog image at the bottom of this post (labeled "Properties"). It was displayed for a vertical bar chart (single series). It includes property Visible under Labels. But in the present day (in an…
1
vote
1 answer

When using plotly in R with "hovermode = 'x'" enabled, is it possible to skip hoverinfo when y = 0 or y = NA?

I'm using R/plotly to create a stacked filled area plot summarizing several accounts opened at different times, whose balances sometimes go to zero. Here's a simplified example using three accounts ("X", "Y", and "Z"): df <- data.frame(cbind( …
matogoro
  • 15
  • 5
1
vote
0 answers

Creating optimized stacked area charts in python by iterating individual curves

O. community. Long time lurker, first time posting. Consider stacked area charts that are made up of the sum of individual curves. I am trying to create 'optimized' stacked area charts in python that iterate individual curves along the x-axis within…
1
vote
0 answers

how do I fill up my non-filling stacked area graph?

I am trying to create a stacked area graph. I'm completely new at R so simple functions like these are still a bit hard... I used the following code: # stacked area chart ggplot(specimens_all_together, aes(x=`samplesite`, y =`value`,…
maritos
  • 11
  • 4