Questions tagged [radial]
132 questions
2
votes
2 answers
Android - Radial Chart implementation
Is there a native way or library to create a chart as this in Android?
I would like to render this natively rather than loading up a webview with some web library

htafoya
- 18,261
- 11
- 80
- 104
2
votes
0 answers
SVM with radial kernel for numeric response in caret package
I applied the SVM algorithm with a Radial kernel to a regression problem using the following packages:
caret (train function with SVMRadial method), e1071 (svm function) and kernlab (ksvm function).
For functions on caret and kernlab, I fixed the…

Hellen Geremias
- 33
- 6
2
votes
1 answer
Why Radial tree layout drawing algorithm is making crossed edges?
I am implementing radial layout drawing algorithm, according to the publication of mr.Andy Pavlo link [page 18]
The problem is, that my result contains crossed edges. Which is something that is unacceptable. I found some solution, similiar problem…

Arsiwaldi
- 513
- 1
- 7
- 23
2
votes
1 answer
Detect radial Pixel
I Wan't to check the collision from radial Elements.
The Problem is, currently i check only the pixels as an rectangle because the other images are native with HTML-Elements.
I'm only using the canvas to draw the boundary background to check the…

Adrian Preuss
- 3,228
- 1
- 23
- 43
2
votes
3 answers
How to implement a Radial/Pie Menu in CSS3?
I would like to implement a radial menu using CSS3 transforms animations similar to the third demo in this page. There is an implementation in jQuery using canvas Radmenu but it doesn't move as fluidly as the flash one.
First question would be: is…

Horacio
- 2,727
- 5
- 26
- 29
2
votes
0 answers
Android Radial Gradient does not work properly
I'm working on an Android application in Xamarin. For button backgrounds, I've created a simple XML. The code is:
-

eager
- 308
- 2
- 11
2
votes
2 answers
How to make a popup radial menu in Pygame?
I was wondering if anybody could give me any advice on how to create a radial menu with options e.g. 'Attack', 'Talk' that automatically pops up when you click on an object within the game... kind of like the radial menus used in numerous…

Ilmiont
- 2,032
- 4
- 27
- 44
2
votes
1 answer
Smooth radial gradient
So, I'm trying to create a radial gradient (for static lighting in a game). I came up with this:
int step = 4;
int forLen = (radius / step);
g.setColor(new Color(0, 0, 0, intensity));
for (int i = 0; i < forLen; i++)
g.fillOval(radius - i *…

Sylar
- 357
- 1
- 5
- 15
2
votes
1 answer
Radial gradient background programmatically in UIViewController
I researched a lot but I cannot find a proper solutions. I want to add a radial background to a UIViewController which fits to a iPhone 4 and iPhone 5 screen (view See attached screenshot). The background should be done programmatically because i…

grobald
- 155
- 2
- 14
2
votes
0 answers
How to implement swipe on radial menu to make the menu move out and in of the screen
I have implemented radial menu functionality in my android app. It is semicircular radial menu which is present in the left hand side of the screen.
Now I want to implement swipe on it so that I could swipe it out and in whenever I want to toggle…

user1901079
- 427
- 2
- 7
- 19
2
votes
0 answers
D3 js Collision detection for different shapes and Foreign Objects
I'm fairly new to D3 and have been tasked with developing a force directed graph, however this diagram is unlike any examples I have found and I seem to have encountered quite a few issues.
I'm trying to develop something like…

user2090298
- 21
- 2
1
vote
1 answer
How to edit the first node radius of a D3.js RadialTree?
Hello (my english isn't that good, so the rest is translate with GoogleTrad, i'm french =D)
For a project, I am creating a radialtree with html, js code and the D3js library.
I try to reproduce the first tree, the most complete. The 2nd is what I'm…

LoChab
- 13
- 3
1
vote
1 answer
Plotting comorbidity data in a stacked circular bar chart
I'm essentially wanting to create this terrible hand drawn graph (see below) for a dataset I have of where I want to illustrate the spread of comorbid diagnoses people with specific pain conditions have.
Larger image of below drawing here:
So, I…

erkle_gon_twerkle
- 23
- 5
1
vote
1 answer
How do I add text in the center of a radial chart and/or align the dataLabels to the end of the bars?
The code for the simple radial chart I have so far: https://jsfiddle.net/du4jxzwn/20/
series: {
dataLabels: {
enabled: true,
align: 'right',
color: '#FFFFFF',
x:…

Poorna Athreya
- 11
- 2
1
vote
0 answers
I want to implement radial blur in swift/swiftui
I want to implement radial blur in swift/swiftui. Found Radial gradient on cifilter. Is is possible to make radial blur using radial gradient and cimaskedvariableblur? Or any other apporch?

Tahseen Rasheed
- 95
- 6