3,056 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
1
answer
101
views
How to make a half-circle, semi circle,hemisphere diagram start on the the x-axis and attach correct labels to the chart
I have a semi circle plot that is displaying this data (named data_extract) :
Option Count Perc Fract
Excellent 8 73 .73
Good 1 9 ...
0
votes
2
answers
83
views
Angular Pie Chart: How to offset SVG text labels from leader lines?
I'm building a standalone Angular Pie Chart component. I have slices drawn with <path> and leader lines with <line>. I'm trying to place the <text> labels such that:
They are ...
3
votes
3
answers
152
views
Why does it look like the slices of my diy svg-path pie chart do not converge in the center?
I tried to create a dynamic pie-chart with angular and the svg path element.
I succeeded in principle, but it seems that the individual slices do not properly converge in the center. The effect gets ...
5
votes
1
answer
126
views
Resizing breaks r-plotly pie chart in shiny-App
I have a R shiny dashboard, containing two plotly pie charts, each in one card().
When I resize the browser window, it happens that the slices of the pie chart are not rendered properly. They overlap, ...
0
votes
0
answers
66
views
How to add textures to antv/g2 pie charts
I've a pie chart created with javascript in React with antv/g2 but for Accessibility compliance I must add some textures (like dots and lines) for people with color blindness.
I've tried everything ...
1
vote
0
answers
65
views
Excel VBA - Pie chart bezel
I have tried to get ChatGPT to solve my problem, but it has not been successful. I hope Real Intelligence can help out.
I am copying spreadsheets with pie charts and using VBA to make sure the ...
3
votes
2
answers
268
views
How do I implement Pie and Line Charts in Flutter for visualizing data?
I'm developing a Flutter app where I need to visually display data using charts. Specifically, I want to implement:
A Pie Chart to represent proportions or percentages.
A Line Chart to display trends ...
0
votes
1
answer
43
views
Pie charts using facet_wrap do not show properly
I tried to plot five pie charts into one figure using facet_wrap(). However, the pie charts did not show properly. I searched on google for a solution, but it did not work. The figure is shown as the ...
1
vote
1
answer
48
views
Title in the JSON file for a Plotly plot cannot be rendered by react-plotly.js library in a React Web App
In my React Web App, I would like to use "react-plotly.js" library to render a Plotly plot from the JSON file exported from Python.
An example of the JSON file is:
{
"data"...
0
votes
0
answers
237
views
How to configure the Grafana Pie chart legend label
I'm currently struggling to set up a legend for a pie chart in Grafana.
This is my query:
SELECT
channel_id as identifier,
COUNT(channel_id) AS value
FROM (
SELECT channel_id FROM mydb....
1
vote
1
answer
40
views
d3.js pie chart replace an existing slice with multiple subslices
I'm trying to create a pie chart using d3js. When you click on a slice, an ajax is sent to the server and retrieve the children of the slice. The children always have a value which the sum is the ...
2
votes
0
answers
69
views
Is there a way to control JavaFX PieChart size to make them uniform, independent of the text size in the slice labels
I have an application that creates a lot of pie charts. The labels on the pie chart slices can have a text size of 6 or 8 characters up to sometimes 30 or so. The size of the text in the label affects ...
0
votes
0
answers
62
views
Problem with slider and pie chart in Flutter
I ran into an issue where scrolling the circular slider in the Flutter app causes the chart to scroll unwantedly. I use PieChart and CircularSlider on the same screen, but when I scroll through the ...
2
votes
1
answer
48
views
matplotlib image as labels on pie chart
I don't find the way to move the labels' text to images. How to use PIL or imageio to retrieve flag images from internet and use them instead of the strings.
Here is the MWE:
import matplotlib.pyplot ...
0
votes
1
answer
250
views
How to make right table data for pie chart rendering?
I do have this result as a KQL query (single row)
A
B
C
5
7
3
And I'm trying to make a pie-chart from that.
I tried a bit with narrow(), evaluate(), pivot()...
Honestly, I don't understand exactly the ...