Settings and activity
174 results found
-
9 votes
An error occurred while saving the comment An error occurred while saving the comment You don't need to change anything in exporting.src.js to use this. Just make your own method that runs chart.getSVG() to retrieve the SVG, and prints it to a canvas using canvg.
-
9 votes
There’s a simple hack you can do to implement it: http://jsfiddle.net/highcharts/ztRF5/
An error occurred while saving the comment It took a minor adjustment to make it work again - the SVG renderer needs to know the borderWidth first in order to apply the dashStyle.
Code change at https://github.com/highslide-software/highcharts.com/commit/cd0d689e4de4729839d3e63c370836c07290db7f
Demo at http://jsfiddle.net/highcharts/ztRF5/130/ -
8 votes
A solution for adding a machine readable HTML table below the chart can be seen at http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/studies/accessible/
An error occurred while saving the comment Can you elaborate on what specific features you need for 508 compliance?
An error occurred while saving the comment What about displaying a HTML table as an alternative? You could set up Highcharts to load data from the table in the first place, and hide the table by default. See http://www.highcharts.com/demo/column-parsed for a demo.
An error occurred while saving the comment What exactly would that mean in the case of Highcharts? What features are missing for it to be 508 compliant?
-
5 votes
An error occurred while saving the comment The typical implementation would be that you set a timeout in the mouseOver event, and clear the timeout in mouseOut.
- Original, without delay: http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/plotoptions/series-point-events-mouseover/
- Modified, with delay: http://jsfiddle.net/highcharts/9so4xkd0/ -
4 votes
An error occurred while saving the comment Here is the same code, written as a plugin so you don't have to attach event listeners to every chart: http://jsfiddle.net/highcharts/Smy56/
An error occurred while saving the comment That's a good approximation, thanks for sharing!
-
3 votes
An error occurred while saving the comment That shouldn't be a problem. Instead of pointStart and pointInterval, you use your x,y tuples data like in the demo at http://www.highcharts.com/demo/spline-irregular-time/
-
17 votes
An error occurred while saving the comment Technically the current implementation only works in the Y direction, as in an inverted chart the Y and X axes swap places. So the feature request would be to add X ranges to the current implementation.
-
4 votes
An error occurred while saving the comment Using Highcharts' Pointer.normalize method, you can apply mouse events directly to the container: http://jsfiddle.net/highcharts/YQ6Bt/.
This is an undercommunicated feature, we will create better documentation it asap.
-
6 votes
See https://github.com/highslide-software/highcharts.com/issues/3499. We have implemented this so that the layout option of the legend decides what side of the chart it should be displayed at.
An error occurred while saving the comment Yes I agree there is something missing here. We should be able to position the legend below the chart, left aligned. The offending logic is in Chart.getMargins method.
-
19 votes
An error occurred while saving the comment Actually Unicode has a separate character for squared: http://jsfiddle.net/h37VJ/
An error occurred while saving the comment You are aware that you can use true HTML? http://jsfiddle.net/highcharts/nHfcb/2/
-
1 vote
An error occurred while saving the comment -
6 votes
An error occurred while saving the comment It would probably be best implemented as a small plugin. Where would you like your arrows? In the middle of the lines, at the start, at the end? One arrow or multiple arrows?
-
0 votes
Thank you for your request.
An error occurred while saving the comment -
45 votes
Here’s how to add the events with jQuery:
http://jsfiddle.net/highcharts/5V33F/An error occurred while saving the comment @Patrick, your approach with addressing the legend-items is much better and cleaner.
In the future, Highcharts will revolve more around CSS styling and class names, so this will not change. -
0 votes
We currently use the input box’s onchange event. Turns out that Chrome and Firefox already trigger the event on Enter. IE8 however fails to change the ranges on Enter.
An error occurred while saving the comment -
1 vote
An error occurred while saving the comment Can you show us a demo of that?
-
2 votes
An error occurred while saving the comment There's the Chart.get method that lets you look up the series by its id. See http://api.highcharts.com/highcharts#Chart.get . If you set the series id equal to its name, it will behave like you want.
-
171 votes
An error occurred while saving the comment I fixed that in the plugin now, check out version 1.0.2.
An error occurred while saving the comment Instead of applying it to the legend.title.element, perhaps try legend.legendGroup.element instead?
addEvent(title.element, 'mousedown', function (e) {
An error occurred while saving the comment @dcw: Actually it works with the latest v3 code: http://jsfiddle.net/highcharts/M7ZNQ/1/
An error occurred while saving the comment I see that - it's a problem with the legend and the axis labels both having zIndex 7. The workaround is to set the axis.labels.zIndex to 6, which I have done in the demo.
An error occurred while saving the comment Actually I have a POC for HTML legend: http://jsfiddle.net/highcharts/nULxz/. Perhaps you can pick up this with jQuery and do some magic?
-
1 vote
An error occurred while saving the comment The "Basic area" demo from our website is an example of an area chart with a numerical X axis: http://www.highcharts.com/demo/area-basic
-
0 votes
Thank you for your request.
An error occurred while saving the comment I'm not sure I grasp the problem... For the same Y data range I would say you should use the same axis. But you obviously want something else. I also don't understand why only one label is displayed. Can you show us an example?
@grtvr The link is dead... Do we know why? Also affects http://www.highcharts.com/docs/export-module/export-module-overview.