Is HighCharts possible to combine polar chart with other chart? - highcharts

As you know, we shall set chart.polar to true to have a polar chart with HighChart. It seemed that polar chart is so different to other chart types, isn't it?
I've seen many other combination of different charts, but none of which could combine a polar chart.
Is it possible to combine a polar chart with a bar chart?
I guess it is possible since I believe HighCharts is powerful enough.

Related

Overlaying 3D Pie Chart on Camera Feed using ARKit SceneView in iOS

I want to overlay 3D pie chart on my camera feed using ARKit. How can I achieve this?
I found tutorial to create bar chart here https://github.com/Boris-Em/ARCharts
However I din't find any similar code base to draw pie chart. PLease suggest how to draw dynamic pie chart that take input values.

CorePlot - How to draw a connecting line between two plot symbols from different scatter plots within a graph

I have a graph with two scatter plots. Both plots have data which was recorded over a period of time. For every data point in plot 1, there is a corresponding data point in plot 2. Said another way, Plot 1 and Plot 2 have varying y-values for a given x-value.
I am trying to connect the selected plot symbol for plot 1, with the corresponding plot symbol for plot 2. Is there a specific API to implement this with CorePlot? The delegate methods only ask for a plot symbol so there isn't anything that jumped out to me, and I haven't been able to find any other question here on SO from people with a similar issue.
I have attached an image to illustrate the effect I am trying to achieve.
If CorePlot does not currently support this behavior, my workaround is to add a third plot to the graph. This third plot will only display the plot points for the selected data point from plot 1 and the corresponding data point from plot 2.
Graph with two scatter plots where selected plot symbol is connected to corresponding plot symbol in a different plot.
As long as all three plots use the same plot space, your idea to use a third scatter plot to draw the connecting line is the best solution. Its datasource will be very simple since it only needs two points when it should draw the line, or zero when the selection is hidden. Since it's a separate plot, you can use a different line style to distinguish it from the other plots, too.

Calculate area under a highcharts curve

I am looking for ways to calculate the area under a highcharts curve (integral). I have been looking but so far I haven't found nothing. Is there any tool available for me to do this?

Highcharts - Funnel, Line and Scatter

I know it's relatively simple to combine graph types but was wondering if it the below was possible using HighCharts?
Well, very easy. You red lines would be a scatter type. Your line would be a line. Your funnel would be two spline types. You would need to calculate your curves for the splines however.
well you can do it with Highcharts. its as simple as it looks.
you can use a combination of spline and scatter chart.

How to draw barplot in this way with Coreplot

My image is cannot post so the link is my picture
I want to draw a chart like the image in iOS app
I use the CorePlot to help me to make this
My Question:
How to draw 3 barPlot whit 3 kinds color
How to draw a barPlot from the CPTXYAxis 0 to -4000 in the Upside down way
Any help would be appreciate
Thanks all
A Core Plot graph can have as many plots as you need. They can be the same type or a mixture of different types. Use the identifier property to uniquely identify each plot and check it in the datasource to determine which plot is asking for data. Several Core Plot example apps have multiple plots in a graph; the Plot Gallery is a good place to start.
The "Plot Space Demo" in the Plot Gallery also shows how to "reverse" an axis. Just give it a negative length.

Resources