I am viewing 10 series of data in my scatter graph.
On less than 10 series I have no problem, however, once I reach 10 series of data the scatter graph shows the scatter but all with circles that cant be clicked instead of their original shapes.
Example in the image below all shapes showing as circles
Related
Question 1: Can we create a bubble chart with x-axis aligned vertically and opposite to y-axis as in below image.
Example
Question 2: Dual y-axes are possible in highcharts but a series data can be associated to just one y-axis, is it possible to associate a data series with both y-axis? In other words, data points plotting will be in respect to 3 axis: x-axis and dual y-axes.
I have a requirement in my project where i need to create contour chart using High charts,I have successfully created the chart with the data but now i need to define the legends color as per my data values,as of now the color combination is taken care by the high charts implicitly but i want to use specific color for a specific value.
Basically in my chart i am representing the variation(Percentage difference) in prices b/n two days for two categories so lets say if the the price shoots up the color will be red and if there is price fall the color will be blue,but in order to show the smooth transition between the prices i am using different shades for blue and red and want to associate these color based on their values.
is there is any way where i can do the above customization in code so that i can get the chart like this
Please guide
Can I add multiple colors in Contour ?
Just guide me for the same.
If yes what I have to use ?
I am uploading two images of my graph, both representing same data.
1 is of Heatmap and 2nd is of Contour.
Heatmap
Heatmap
and
Contour
Contour
Heatmap is representing the colors as I coded, but the moment I convert Heatmap to Contour, the colors are not setting properly.
Please guide me can I convert Heatmap to Contour in terms of colors exactly same ?
I'm using a Core Plot Scatter Plot to chart data. While I want the background to be white, I'd like to mask the plot symbols and data lines to an image sitting beneath the graph. This way, the only parts of the image visible would be the "fill" of the scatter plot lines and plot symbols.
How can I mask lines and symbols to an image while still keeping the background white?
Here's a Photoshop Mockup of what I'd like to do:
Thanks!
I'm not sure it's possible. The final result will depend on the image you're trying to use. The plot is drawn on top of the plot area and graph fills. You might be able to use image fills for the line and plot symbols. Experiment with the tiled and tileAnchoredToContext properties of CPTImage to see if you can position the fill images in a way that mimics the effect you're looking for.
Is it possible to combine a pie chart with scatter points in each slice?
for example to display 5 groups of animals in the pie, and plot the individual animal point in the slice ordered by the age of the animal.
I know you could use a donut chart to get close. (http://www.highcharts.com/demo/pie-donut)
I would recommend a polar or wind rose chart for that type of data. The reason for that is because a pie chart's radius (the yAxis, if you will) is not actually a measure. Only the percentage of the circumference is of importance in a pie chart.
Knowing two plotted data points on a series in Highcharts, how do I get the number of pixels between them?
In series data you can find: chart.series[0].data[0].plotX so to get distance between two points, use: chart.series[0].data[5].plotX - chart.series[0].data[0].plotX