I am using a Shield UI Donut chart and I am in need to achieve some special layout of my chart. What I need is to have some of my points, let’s say the half of them displayed in one donut chart, and the other half again in a donut chart that to be surrounding the first one. Or to have two donut charts in one another.
And if this is possible how can I have adjust the radius of my donut charts?
What you seem to be in need is not possible. First of all because you may only have one chart per container. Speaking in terms of what the Shield UI Charting library permits. What you may find more useful is to try the polar charts series, where data is displayed around a center point.
In addition there isn’t a radius property for the donut chart. You may adjust dimensions by the width and height of the chart to achieve any special effects if needed.
Related
I want to create chart only using d3 library. My chart will have different number of vertical bars depending on data and x-axis for this. My question is how to set chart dynamically and set x-axis ticks under every bar. It will be better if width of bars will be constant.
I tried to use ranges and scale but i dont actually understand how they works. Even with some topics)
I think you should use "Grouped Bar Chart".
Refer this block from Mike Bostock.
https://bl.ocks.org/mbostock/3887051
I need to create a chart that shows a series of events (see image, in this case 6) that have a duration of time between them.
I've been able to approximate this with a sankey chart and curveFactor:0, but I can't seem to adjust the space between each node.
Is there some way I can achieve this? It doesn't have to be sankey chart. I can use anything in the Highcharts library. I'd also considered a stacked bar chart but ran into another set of issues.
I have a requirement to have Stacked graph with chart type area and not areaspline. But I don't want the tips of graph to be pointed and rather a bit smoother.
Is it possible with API?
Is there a way to change the height of a 3D Pie Chart? We need to show users differences between a few of charts. Some must be larger in height (they must be rather like pillars then pies), some smaller. In other words, I want the pie itself tot be taller (the y-component of the pie), not the whole chart.
Here's the documentation and examples of the pie: https://developers.google.com/chart/interactive/docs/gallery/piechart#3D
If it's not possible, maybe there are other good alternatives of 3D-pie charts?
I'd appreciate links to tutorials of how to draw a 3D-pie chart (using SVG or Canvas) too.
The code is right there on the page you linked!?
Here: http://jsbin.com/jibucebe/1/ 3d piechart with different height..
I am looking to create a radar chart with multiple diagonal brush selections. I have the radar chart here, and there are examples of using multiple brushes with parcoords. However, I have not seen any examples of using a brush to select on the diagnoal. Basically, I would like to turn this parallel coordinate chart into a radar chart, keeping the brushing capabilities, but I am not sure how to do this, as the axes will be at random places and angles. Thank you!
You cannot change axis generation in parcoords. It's hard-coded as a set of parallel vertical lines.
You would have to modify parcoords.js to suit your needs, which does not seem to be a trivial task.