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
1
vote
1 answer

multiarea chart in lattice

I am pushing lattice to its limits. Consider this example tibble(time = c(ymd('2019-01-01'), ymd('2019-01-02'), ymd('2019-01-03'), ymd('2019-01-01'), …
ℕʘʘḆḽḘ
  • 18,566
  • 34
  • 128
  • 235
1
vote
1 answer

how to create a stacked area chart in lattice?

Consider this simple tibble tibble(time = c(ymd('2019-01-01'), ymd('2019-01-02'), ymd('2019-01-03'), ymd('2019-01-04'), ymd('2019-01-05')), var1 = c(1,2,3,4,5), var2 =…
ℕʘʘḆḽḘ
  • 18,566
  • 34
  • 128
  • 235
1
vote
0 answers

Strange draw behavior of stacked area chart in JavaFX

I have divided my stacked area chart into three main separated area and each area can have multiple another area inside. The all main areas should be in same yAxis line. For example the first area is whole alone but the second one contains two area…
Jan Váca
  • 23
  • 5
1
vote
2 answers

How can you make a stacked area / line chart in Julia with Plots.jl?

I would like to create a stacked area chart, similar to this for example, in Julia using Plots. I know / suppose that you can do this if you directly use the Gadfly or PyPlot backends in Julia, but I was wondering if there was a recipe for this. If…
Gobs
  • 47
  • 3
1
vote
0 answers

stack area chart visualization tableau

Anyone can explain what happen with this chart, please. For instance, Eastern Asia have 0.3xx Tone, but why the line is go down until y=0k. Why they didn't just stay in the end of the sum of Region before.
1
vote
1 answer

Chart: issue with stacked areas order

I would like to display the 2 different stacked area elements according to their parameters. But the chart area displays it not as specified and puts the second block at the top right corner of the first stacked area. They should be displayed side…
Amörg
  • 23
  • 2
1
vote
1 answer

Making Area Chart with Two Variables

I have a data set of the Win/Loss record of the Boston Red Sox in 2018 which starts like: Game,W/L,W,L 1,L,0,1 2,W,1,1 3,W,2,1 4,W,3,1 5,W,4,1 6,W,5,1 7,W,6,1 8,W,7,1 9,W,8,1 I want to convert this to a stacked area chart comparing W vs. L with…
Todd Burus
  • 963
  • 1
  • 6
  • 20
1
vote
1 answer

Stacked chart with keys in columns

I am trying to build a stacked area chart using some CSV data from the WHO, and it is in the following format:…
1
vote
1 answer

How can I get my area plot to stack using ggplot?

I am trying to get my cumulative area plot to stack using the code below, which is based on http://dantalus.github.io/2015/08/16/step-plots/. I have added in position=stack, however the plot still overlaps. The aim of what I am trying to achieve is…
rockdoctor
  • 385
  • 1
  • 3
  • 11
1
vote
1 answer

D3.js Stacked Bar OnClick Action Not Triggered

I am in the middle of creating two related stacked bar charts. Clicking on a bar of the top chart should trigger the drawing of the bottom chart. Oddly, the mouseover and mousemove actions work but the click action doesn't. what do I need to change…
Raymond Kalonji
  • 345
  • 3
  • 14
1
vote
1 answer

Horizontal Stacked Bar Chart with Two Y Axis Issues

I have the following issues/questions regarding my charts: How can I prevent the right y axis tick values from either being partially deleted or getting inside the chart? When I use the yValuesTripId as domain for both left and right y axis domain…
1
vote
1 answer

Tooltip not displaying entire content for first two area charts

Not sure where I'm doing wrong,I'm not able to load contents inside kendo chart on hover --only for the first two area charts from top. The chart at the last is however loading all the template data inside the tooltips. Please find the dojo…
forgottofly
  • 2,729
  • 11
  • 51
  • 93
1
vote
0 answers

stacked area plots ggplot

I was hoping someone might be able to help. I am still getting to grips with R and I am quite new to ggplot2. My problem: I am trying to make a stacked area plot. I have formatted my data frame so that it is in long format. My columns are Date,…
Lmm
  • 403
  • 1
  • 6
  • 24
1
vote
1 answer

JFree: Stacked area chart continue painting after last point and before first

I'd like to get stacked area chart with beginning chart in first point and completing in last point like here: But picture is out of point's range like here: How can I make stacked area starting exactly from the first point and completing exactly…
1
vote
0 answers

Real Time stacked area chart with Highcharts

I want to create a chart with Highcharts in the form of a stacked area chart that is updated in real time. I'm having problems with dynamically updating multiple stacked area charts though, you can see an example in the fiddle below. When new…
Joel
  • 380
  • 3
  • 16