Settings and activity
174 results found
-
5 votes
An error occurred while saving the comment -
3 votes
An error occurred while saving the comment In the upcoming Highcharts 3.0, we have implemented Python-like sprintf-formatting directly in the format expression: http://jsfiddle.net/highcharts/aD8Us/
-
1 vote
An error occurred while saving the comment It's better to use a columnrange chart: http://highcharts.com/demo/columnrange
-
6 votes
You mean like we do in Highcharts: http://www.highcharts.com/demo/dynamic-update.
The Highstock charts generally consist of much more data, so currently we have disabled animation because it didn’t perform good enough.
An error occurred while saving the comment Mike, this is strictly off topic, but Highcharts does animate on pie slice update. See http://jsfiddle.net/highcharts/Qv7sW/.
-
3 votes
An error occurred while saving the comment Are you refering to the nested axis labels? Currently we don't have a simple solution for that, but we are working on it. What you can try is to use two or three linked axes, each with its set of categories.
Check out this: http://jsfiddle.net/highcharts/fynDY/
-
1 vote
An error occurred while saving the comment You can customize the tooltip size by giving the content a fixed size: http://jsfiddle.net/highcharts/zbVRT/
This means you should be able to use method one. Even better, I think, would be that you generate a chart directly into the div in the tooltip. It should run faster.
-
19 votes
An error occurred while saving the comment Actually I have spent quite some time trying to accomplished exactly this, because I feel it is a common use case. But so far I haven't been able to prevent the setExtremes event from triggering. The goal is to make this happen with minimal coding.
-
24 votes
Regarding the OP, the recommended setup would be to use categories like this: http://jsfiddle.net/highcharts/yMSCZ/19/
An error occurred while saving the comment These strictly belong to one series, so I'm afraid HC can't do what you want. Zooming in on one single X point doesn't make sense. You will lose the legend if you change it to one series, but then you are supposed to use categories for each point's name.
-
3 votes
An error occurred while saving the comment You can use the labels.formatter and check each value against the previous value. Then return null or "" if it is the same.
-
1 vote
An error occurred while saving the comment The y offset actually refers to the baseline of the text, so it is more accurate above the X axis than it is for labels below the X axis...
-
1 vote
An error occurred while saving the comment See http://highcharts.uservoice.com/forums/55896-general/suggestions/2378007-allow-fill-patterns-for-areas-columns-plot-bands for a proposed solution to setting background images on columns
-
7 votes
An error occurred while saving the comment Is it me or is this example nice and tight ? http://jsfiddle.net/highcharts/qeL8f/11/show . Tested with Chrome, Firefox and IE8.
An error occurred while saving the comment I set out to fix this but then I wasn't able to reproduce it. Can you help? Make your edits to http://fiddle.jshell.net/E8gJ4/.
-
19 votes
An error occurred while saving the comment "Why would you prefer .csv files?"
We don't. Highcharts works with any backend. -
4 votes
An error occurred while saving the comment You can do that without using images: http://jsfiddle.net/highcharts/WcLz9/
Please note that the gridZIndex option is not supported in the current release of Highcharts; the example uses the development branch for Highcharts 2.2.
An error occurred while saving the comment -
1 vote
I’m not sure I get you, but perhaps you can solve your task by using parallel arrays? http://jsfiddle.net/highcharts/uBVzY/
An error occurred while saving the comment Instead of a parallel array you can use a hash table where the x data works as key for the extended obect.
-
7 votes
I created a plugin to allow the scatter points to align to a column series. See http://www.highcharts.com/jsbin/omevud/edit .
An error occurred while saving the comment Based on your image, you can actually try to hack those point positions for the spline by adding intermediate x values. The categories are internally handled as values 0,1,2,3 etc. By adding float x values you can place the points anywhere: http://jsfiddle.net/highcharts/LLExL/407/
-
4 votes
An error occurred while saving the comment Did you try using xAxis.labels.formatter? It is extremely flexible, and you can return a custom text based on each axis value.
-
0 votes
Thank you for your request.
An error occurred while saving the comment There's the connectNulls option...
-
12 votes
An error occurred while saving the comment Something like this? http://jsfiddle.net/highcharts/DsuDz/
-
6 votes
An error occurred while saving the comment Remember you can already add a color option to each point's configuration object
In order to be exported, images must be drawn using the Highcharts renderer from the Chart.load event: http://jsfiddle.net/xvsZd/