675 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
248
views
Issue with radius of Shadcn Stacked Bar chart
I'm using Recharts via shadcn/ui charts to create a stacked bar chart where each stack represents a day and segments represent different channels. I want the final visual stack for each day to have ...
1
vote
1
answer
71
views
Vertical stack bar displays zeroes / "invisible" values with Chart.js
I'm trying to make a vertical stack bar plot with Chart.js.
It works pretty well but for some labels (i.e., for one vertical part of the graph) I don't necessarily have strictly positive values for ...
2
votes
1
answer
62
views
Stacked column chart is showing a small zero value sliver at the top of each column
I have a stacked column chart. Each column has three blocks but some of them have zero value.
The columns are displaying the last element as a small, hoverable slice.
I would prefer that this did not ...
1
vote
0
answers
39
views
stacked barplot with repel legend manipulate single labels e.g. in italics [duplicate]
So I would like to manipulate some labels I have added to a stacked bar plot through repel. The problem is, that some names will have to be in italics, while others don't so I am trying to specify ...
0
votes
1
answer
58
views
Overlaying a line plot over a stacked bar plot with dual y axis [duplicate]
I tried many times to plot line data of temperature over a stacked bar chart, but it didn’t work. My data consists of four columns as shown below: site, Frequency, Movie _Status, and temperature:
Site
...
0
votes
1
answer
753
views
Is there a way to have multiple y-axes in a stacked column chart in Powerbi?
I want to create a stacked column chart with multiple Y axes in the chart that are represented as columns.
I am aware that you can do a combined chart in Powerbi, but it only allows for the second ...
1
vote
0
answers
66
views
How to Show Only Highlighted Stack Value in Tooltip for Stacked Column Chart in FusionCharts
I am using FusionCharts in JavaScript to create a stacked column chart. When I hover over any stack in the chart, the tooltip displays the highlighted value of the stack along with the non-highlighted ...
0
votes
1
answer
50
views
Stacked Grouped Chart
<!DOCTYPE html>
<html>
<head>
<title>Task Status Bar Chart</title>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head&...
0
votes
1
answer
81
views
Stacked bar plot for a DataFrame
I have a below table in a DataFrame. I want to visualize it in a stacked bar plot.
Percentage
A
B
C
D
E
F
0%
10
20
50
60
100
90
10%
89
87
65
87
89
88
50%
87
876
89
978
6
0
100%
89
78
89
89
54
34
For ...
-1
votes
1
answer
77
views
chart js stacked scale overrides x labels
i built a chart with multiple stacked y scales.
the x axis shows a timeline, logically common to all datasets.
the x values don't overlap, as each dataset has it's own length and values.
most datasets ...
1
vote
1
answer
35
views
In R, how to place error bars at each bar which is stacked?
I know there are several answers to this question, but it's slightly confusing to understand. I believe there are simpler codes than those explained in the current posts.
location=c("L1",&...
3
votes
1
answer
156
views
Sharing multiple ggplot legend symbols with one label
I am trying to create a stacked barplot for one response over time (Year) across 3 different sites that I've separated into different facets (facet_wrap). I would like different colours per facet, and ...
-2
votes
1
answer
201
views
Find time spent in each state using DAX
calculate time spent in each state
i have a data as given below:
Ticket num
Created
state
Ticket_1
11/3/2022 0:06
P4
Ticket_1
11/3/2022 0:18
P4
Ticket_1
11/3/2022 0:21
P3
Ticket_1
11/3/2022 0:22
P2
...
0
votes
1
answer
53
views
GGplot - Stacked Bar Chart
I am trying to refine a stacked bar chart and am having several issues:
I want to extend the labelling of my y axis. At the moment the labels stop at 56,000,000 but I want a label at the top to show ...
1
vote
1
answer
369
views
space between groups on stacked grouped barchart
I want to be able to add space in between the groups on my grouped barchart in R. Usually I would use geom_bar(position = position_dodge(width = ))
but I cannot use position = since it is already ...