Questions tagged [area-chart]

35 questions
1
vote
1 answer

How To Match Left and Right Tick Intervals with Chartjs

When I use a left and right line plot in Chartjs, I sometimes get inconsistent Y Axis tick interval counts. So, I might have like 7 intervals on the left, and Chartjs automatically might put 10 on the right. An example of a hard-to-read chart would…
Volomike
  • 23,743
  • 21
  • 113
  • 209
0
votes
1 answer

How can I show profit and loss indication lines using the highchart in angular?

Hello guys I want to create a chart in angular using the highchart, which indicates the upgrade and downgrade flow for profit and loss. Does anyone have Idea, how can I achieve this situation? Here is the stackblitz example that I have…
0
votes
0 answers

Create invert area chart with amCharts

With amCharts, I'm struggling on creating this chart where Red series is bounded to the top and Blue series is bounded to the bottom. Does anyone know how can I achieve this? Thank you
Duc Trung Mai
  • 2,141
  • 1
  • 24
  • 23
0
votes
0 answers

Resize the scale on the dual y-axis and on an area chart

I want to scale the geom_line chart so that the area chart looks like this image (example). In my example I was able to scale both Y-axes but geom_line does not obey the second Y-axis. This is my code library(ggplot2) df <-…
Miguel JV
  • 67
  • 5
0
votes
1 answer

print legends to area chart with ggplot2

I am trying to add the legends in my area chart but I have problems and I can't position them to the right of the chart, this is my code and this is my data data library(ggplot2) df <- read.csv("/home/pronostico_gas.csv") gas <- as.data.frame(df[,…
Miguel JV
  • 67
  • 5
0
votes
1 answer

Matplotlib's stackplot change colors for overlapping regions

When I draw a stacked area plot using Matplotlib's stackplot, if a set of y values has a negative number in it, then that area will overlap with the area underneath. For example: import matplotlib.pyplot as plt plt.stackplot([1,2,3], [1,2,3],…
at.
  • 50,922
  • 104
  • 292
  • 461
0
votes
0 answers

How to make basic area high Charts responsive?

Basic area chart in High Charts is responsive only when the page is not refreshed and as soon the page is refreshed it will not be responsive. enter image description here the is the image of the page responsive with the code enter image description…
0
votes
1 answer

Can I plot an Area Chart in Tableau without a date field?

I have a dataset that looks like this: Project Month 1 Month 2 Month 3 Project X 2.4 7.4 4.1 Project Y 1.6 5.4 2.2 Project Z 0.8 3.4 1.4 Those month fields are sums of hours worked on that project, that month. I'd like to create a…
0
votes
0 answers

recharts AreaChart add blank spaces within negative-positive joins

i am using recharts plugin, all is good but i found a bug when is rendering AreaCharts. In this case i want to render positive and negative values, i use stackOffset=sign to accumulate the negative and positive values on each side of the Y axis. But…
cralfaro
  • 5,822
  • 3
  • 20
  • 30
0
votes
0 answers

NativeScript+Vue Chart: AreaSeries doesn't fit to width of RadCartesianChart

I am trying to create a area chart without any axis like this one: I have almost done it but there is a problem: When the chart is loaded the first time it looks like this: After initial load if I toggle the hidden property of LinearAxis it stars…
Olcay Ertaş
  • 5,987
  • 8
  • 76
  • 112
0
votes
0 answers

How to add descriptions on selected data series to an area plot in mathplotlib

I created a graph that looks alright to me with the following line of code: df_wide.plot.area(xticks=df_wide.index, legend=False, xlabel= 'Week', ylabel='Percent', title='Percentage of Letters') However I would like to add the name of selected (or…
JoGa
  • 13
  • 3
0
votes
1 answer

Ending Series points don't show up on highchart area type chart for large series data

Here is the Stackblitz Demo of the issue Preview link (for better visibility): https://highcharts-angular-stock-a1hvg5.stackblitz.io/ Issue is : The last plot that is visible on the right most edge of the chart is of 12/27/2021 This is wrong as the…
dota2pro
  • 7,220
  • 7
  • 44
  • 79
0
votes
1 answer

How can I create a salary area chart with a specific data point

I am trying to create a compensation breakdown for each employee to show their financial health in the market. I found instructions on here from 7 years ago for a column chart that was similar to what I'm looking for. However, is there a way to have…
0
votes
1 answer

D3 area chart not rendering right

I'm creating a D3 area chart, and the area is showing above the line rather than below. Area chart with area appearing above line Here's a fiddle: https://jsfiddle.net/8xsrmgzw/ //Read the…
kalidogg
  • 5
  • 3
0
votes
0 answers

Datetime conversion to make a time series plot with Pandas

I'm trying to create an area chart with a pandas DataFrame. Here's what I get when I plotted the data as it was imported. debt[['Record_Date', 'Debt_Held_by_the_Public']].plot(kind='area') I converted the "Record_Date" field to a datetime field,…
kalidogg
  • 5
  • 3