1077 results found
-
add "after tooltip show" event
I want to do something after the tooltip shows.
And I found the "point hover" eventBut when I use the "crosshair" option, it doesn't need to hover the points to trigger the tooltip, anywhere of the chart triggers the tooltip
So now I can only do something when user's mouse hovers the points
I want to do it when the tooltip shows,
So i think it's better to add a "after tooltip show" event in options.
thanks
2 votesYou can use the internal chart.tooltipRefresh event: http://jsfiddle.net/highcharts/Ym4UA/
-
Reverse order in stacked charts
The current logic for the "normal" stacking is that the series are stacked from the top to the bottom. There should be an easy way to reverse the order, our users are used to build the stack from the bottom to the top and not vice versa. I suggest adding something like plotOptions { stackingOrder: 'reversed' }// default 'normal'
18 votes -
Start the animation when the chart scrolls in to view
I'd like to be able to delay the initial animation of the chart until it comes in to view in the browser by scrolling.
I've tried doing this with js but the whole chart is hidden until it comes in to view which looks odd. I'd like the axis to show and only the animation to trigger when it comes in to view.
7 votesHere’s a plugin/study for the feature: https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/studies/appear/
-
support more or custom spline fit algorithms
As mention in the comments for "Fix spline plots" (http://highcharts.uservoice.com/forums/55896-general/suggestions/871839-fix-spline-plots-to-draw-a-better-generalized-line), sometimes the built in spline fit method is not acceptable. It would be great if there were other fit options built in (like D3: https://github.com/mbostock/d3/wiki/SVG-Shapes#path-data-generators) or allow custom algorithm to be plugged in.
0 votesActually there is such a method, getPointSpline. It computes the line segment from one point to the next. It takes arguments for the whole segment, the point and the index, so you can add the surrounding points to the calculation as well. See http://jsfiddle.net/highcharts/6sQjJ/.
-
Fill area range under spline
The features we need to apply is fill area under spline.
The common solution on your forums suggest holding another series with type ‘areaspline’
and give it the corresponded points we have 2 problems with this :1) We are holding huge amount of data on real time updating timeline and we don’t want to hold another series
with the same points count (even if the most of them are null) just for color small area from time to time2) The ‘areasplin’ does not correspond the ‘spline’ Bezier curve it exceed from its frame as showing below
current workaround…
7 votes -
how to add scroll bar for legend in pie chart
My legend is to long and is moving out of the legend box. it would be nice to have a scroll bar for the legends,
3 votes -
4 votes
-
ignore series for axis scaling
like to be able to tie a series to an axis for display but have it ignored for scaling as long as there is another series available to that axis for scaling.
Series : [ ignoreForScaling : Default false] or maybe
Series : xAxis|yAxis : [ignoreForScaling :Default false]5 votes -
Doughnut chart with KPI in middle
Like in http://www.improving-visualisation.org/vis/id=348 I want to add 1 (not 2 as in the example) number in the middle of the doughnut. Is that possible?
3 votesOne possibility is to put the chart title in the middle: http://jsfiddle.net/highcharts/6MbWd/
-
Will you plan support the connectors between bubbles?
Will you plan support the connectors between bubbles
( http://www.highcharts.com/demo/bubble)
since the connection between bubbles can express the figures more details.1 vote -
Dotted line between points with null breaks in between
A feature that adds a dotted line instead of a solid line
between two points when connectNulls = trueEx.
x - y
1 - 2
2 - 3
3 - NULL
4 - NULL
5 - 3Would be a solid line except between 2 and 5 where it could be dashed
11 votes -
Funnel with fixed height
It would be nice to have an option for the funnel to set a fixed height for each row.
I'm thinking of an separate array with percents. So you can make a upside down pyramid like this:
http://www.searchenginejournal.com/wp-content/uploads/2013/03/image00113.pngSo you set a height for the chart and the config would be [25,25,25,25]
7 votes -
Pass the number of nulls instead of true/false to dataGrouping approximation functions
I would like my chart to sum or average points in dataGrouping but only when the most of the points are non-null. e.g. When more than 90% of the data is non-null, then show the sum/average, otherwise show null.
Currently, the data passed to custom aggregate functions only contains the number of non-null points and whether or not their are any nulls. There is not enough information to judge what percentage of the period of time is missing data. This could be easily improved by just passing an integer instead of a boolean for hasNulls. hasNulls could be 0 (or…
3 votes -
tooltip
Expose mouse move event or a callback to override tooltip visualization with point object and mouse coordinates.
4 votes -
solar chart
Solar chart
76 votes -
Circular visualization
To see relations between different groups you can vizualize them on a circle. This page is showing nice examples: circos.ca
So this can be a nice feature to have in future versions.
2 votes -
Waterfall un-connected columns at the right side!
Please add support for "un-connected" columns at the right side of the cart.
Most of the time this is used to show targets from previous years or other KPI values.
3 votes -
make reset button on pinch optional
When a user zooms in the chart through pinching, a "Reset zoom" button appears automatically.
It should be possible to modify its behaviour, mostly for self-baked zooming solutions: deactivate, change label, etc.
2 votes -
Linear gauge
Would love to have linear gauges like this:
http://www.russell.com/Helping-Advisors/Markets/EconomicIndicatorsDashboard.aspx
19 votesYou can create linear gauges from columns or scatter charts with one single data value: http://jsfiddle.net/highcharts/9ybLv5je/.
Other examples:
- Filler gauge: http://jsfiddle.net/highcharts/amfbptkw/
- Marker gauge: http://jsfiddle.net/highcharts/7mcq4az6/
- Thermometer gauge: http://jsfiddle.net/highcharts/Y7F3F/
-
a property to change height/width of the small scrollbar-buttons
We are using a touchscreen.
At highchart there are two small buttons over the scrollbarbutton.I am not able to change the dimensions of this small buttons which are used to change the timeselection.
This property can also be combined with the dimension of the scrollbar { height: XX, width: XX}1 vote
- Don't see your idea?