Closed pmatatias closed 1 year ago
Do you mean something like this? https://codepen.io/team/amcharts/pen/abPzyYK/6030ccca80f791f0363c4c4ad2a10edd?editors=0010
Do you mean something like this? https://codepen.io/team/amcharts/pen/abPzyYK/6030ccca80f791f0363c4c4ad2a10edd?editors=0010 in my codepen before,
targetB
andactualB
was separated betweenSeries A
. I want to group it like below. Is it possible?
In this case I would set target value to the target-actual value and make target stack on actual.
yes, at first, I thought to use Stacked
, but in some cases, the actual value is bigger than the target.
which means: target-actual
is negative, and the target should be rendered lower than the actual column
that's why I'm looking for a method to draw a column chart from below.
I think the only way to achieve this would be to add another xAxis (you can make it invisible) and add two of the series to this separate x axis.
@zeroin Thank you for your suggestions. Maybe I'll try it later.
Currently, I just try to explore another method. and I end up with Grouped and Sorted Columns
after some modification, I can get this result.
Code Pen : https://codepen.io/pmatatias/pen/JjwoaQw?editors=0011
xAxis
later.again, thank you for your help. 😄
First of all, thanks for the awesome chart
Question
Is it possible to combine
Clustered
andLayered
column chart?I know we can combine
Clustered
andStacked
, but I want the second series also start from zero, not likeStacked
the next series will start from the end of first value.for example, I have data like:
the chart will be:
What I want to achive is when i have more data in one category :
result: all the series was
Stacked
in the center. is it posibble to make it clustered ?demo codepen : https://codepen.io/pmatatias/pen/VwqYPQy?editors=0010\
Thank in advance 😄