Settings and activity
174 results found
-
1 vote
An error occurred while saving the comment -
42 votes
Here’s a small plugin that allows setting axis top and height as a percentage: http://jsfiddle.net/highcharts/D6TvE/
An error occurred while saving the comment Panes are more complicated, so they aren't planned in the near future.
-
3 votes
An error occurred while saving the comment There is a method Series.prototype.drawPoints. You can create your own version of that to draw the shapes the way you want it.
An error occurred while saving the comment There are lots of methods in Highcharts that can be overridden, for example Highcharts.seriesTypes.bar.prototype.drawPoints.
-
9 votes
Any member of the point’s configuration object can be referenced directly in the tooltip: http://jsbin.com/IyahIVeC/4/
To allow custom properties in array form, you can set the pointMap series property like this:
http://jsbin.com/IyahIVeC/3/An error occurred while saving the comment Not really, anything needs to be processed... What you are referring to is perhaps the turboThreshold in Highstock, where we only accept arrays. That relates to my second example above.
An error occurred while saving the comment You have full control over each point's tooltip text using the tooltip.formatter. Custom options for each point can be passed, and the formatter can reflect this.
-
38 votes
An error occurred while saving the comment Currently it isn't a standalone component, and it won't be in the foreseeable future.
An error occurred while saving the comment Very interesting thought. Thanks!
-
298 votes
There’s a plugin for this, please see http://www.highcharts.com/plugin-registry/single/8/Adapt-Chart-To-Legend
An error occurred while saving the comment Did you see our plugin at http://www.highcharts.com/plugin-registry/single/8/Adapt-Chart-To-Legend?
An error occurred while saving the comment -
3 votes
An error occurred while saving the comment Do you mean like this? https://github.com/blacklabel/grouped_categories
-
3 votes
An error occurred while saving the comment It's probably safer just to move it away from the viewport: http://jsfiddle.net/highcharts/YfJDs/
-
10 votes
An error occurred while saving the comment It will be made possible with Highcharts Cloud, see http://cloud.highcharts.com/. We haven't implemented it yet, but we can add an image in a noscript tag in the show page.
Without the cloud, you can also implement it yourself. You need to pre-generate images of the charts on your server using our exisiting PhantomJS based tool (see docs). Then add a noscript tag in your pages to load the charts when JS fails.
-
1 vote
An error occurred while saving the comment Thanks for your request - currently we don't have plans for it, but it should be able to do it as a plugin.
-
11 votes
An error occurred while saving the comment Yes, set lineWidth to 1. It will draw a line between all points.
An error occurred while saving the comment For your first request, consider this example: http://highcharts.com/cases/bubble.htm
-
76 votes
An error occurred while saving the comment Can you share a screenshot? If you mean the spherical line charts represented at https://www.google.no/search?q=solar+chart&tbm=isch&tbo=u&source=univ&sa=X&ei=O5AIUqDwN8j3sgbisICABw&ved=0CCgQsAQ&biw=1920&bih=1084#imgdii=_, I think those can be done out of the box with existing the existing Highcharts polar charts.
-
45 votes
In the Highstock you can position the tooltip absolutely, which provides a similar effect: http://jsfiddle.net/highcharts/j7BSy/
// Updated 2013-07-22
To use a true legend, a plugin is needed. See http://jsfiddle.net/highcharts/DVvdZ/An error occurred while saving the comment I did a small modification today, so now it also works when tooltip.shared is false: http://jsfiddle.net/highcharts/DVvdZ/5/
An error occurred while saving the comment @Sujay I've updated the plugin now so it uses a smarter way to just replace the text, then reflow the legend.
An error occurred while saving the comment @Eric, see my provided plugin in the status. I hope this helps. It can be extended to OHLC types. Regarding different colors for negative columns, see http://api.highcharts.com/highcharts#plotOptions.column.negativeColor.
-
7 votes
An error occurred while saving the comment The current way of doing this would be to use two linked series: http://jsfiddle.net/highcharts/cQHES/
-
21 votes
An error occurred while saving the comment Currently you can't put the month name in between the ticks. But if you set align: 'left' it will look better than align: 'center'
-
32 votes
An error occurred while saving the comment Would this in effect be the same as a linear X axis?
-
9 votes
An error occurred while saving the comment @Henry, I updated the plugin now. It needed min and max to be set explicitly on the opposite axis. Now it runs later in the process, so the correct min and max should be computed.
An error occurred while saving the comment Yes, it tried to run Highcharts from code.highcharts.local. I fixed it now.
-
111 votes
I’ve tried to modify Joe’s patch into a plugin so that it can run without modifying Highcharts itself. The result can be seen at http://jsfiddle.net/highcharts/c42Ms/.
I didn’t have time right now to check across browsers, but I’m open for suggestions for improvements.
An error occurred while saving the comment Thanks for reporting, I updated the plugin for HC 3.0
An error occurred while saving the comment Thanks, I added it to the plugin.
An error occurred while saving the comment Thanks for reporting, I've added support for scatter.
An error occurred while saving the comment Great! And thanks so much for your nice blog post.
An error occurred while saving the comment That code seems to be jQuery specific...
-
3 votes
An error occurred while saving the comment You can do this programmatically by adding a click event to the xAxis label. See the example under http://api.highcharts.com/highcharts#xAxis.labels.formatter for a proof of concept.
This click handler then needs to remove each data point and set new categories.
-
5 votes
An error occurred while saving the comment Are you aware of the legendIndex option? http://api.highcharts.com/highcharts#series.legendIndex
This actually is more like a bug report, but I am not able to reproduce it. See http://jsfiddle.net/highcharts/bn2rV/, where both series trigger these events.